Skip to content

Commit

Permalink
Fix branding:generate_app_icons failing because of disallowed ICO cod…
Browse files Browse the repository at this point in the history
…er (#25794)
  • Loading branch information
ClearlyClaire committed Jul 7, 2023
1 parent dfedf0e commit 71d4494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/tasks/branding.rake
Expand Up @@ -40,7 +40,7 @@ namespace :branding do
output_dest = Rails.root.join('app', 'javascript', 'icons')

rsvg_convert = Terrapin::CommandLine.new('rsvg-convert', '-w :size -h :size --keep-aspect-ratio :input -o :output')
convert = Terrapin::CommandLine.new('convert', ':input :output')
convert = Terrapin::CommandLine.new('convert', ':input :output', environment: { 'MAGICK_CONFIGURE_PATH' => nil })

favicon_sizes = [16, 32, 48]
apple_icon_sizes = [57, 60, 72, 76, 114, 120, 144, 152, 167, 180, 1024]
Expand Down

0 comments on commit 71d4494

Please sign in to comment.