diff --git a/lib/tasks/themes.rake b/lib/tasks/themes.rake index cd9eda143f..d997d57997 100644 --- a/lib/tasks/themes.rake +++ b/lib/tasks/themes.rake @@ -61,14 +61,11 @@ def update_themes theme.save! unless theme.remote_theme.last_error_text.nil? puts "Error updating '#{theme.name}': #{theme.remote_theme.last_error_text}" - exit 1 end end rescue => e - STDERR.puts "Failed to update '#{theme.name}'" - STDERR.puts e + STDERR.puts "Failed to update '#{theme.name}': #{e}" STDERR.puts e.backtrace - exit 1 end end end