Commit 029460ec by aboutqx Committed by Mike Burns

Update processor.rb

parent 47a4b55d
...@@ -38,9 +38,9 @@ module Paperclip ...@@ -38,9 +38,9 @@ module Paperclip
# See Paperclip.run for the available options. # See Paperclip.run for the available options.
def convert(arguments = "", local_options = {}) def convert(arguments = "", local_options = {})
if Gem.win_platform? if Gem.win_platform?
Paperclip.run('magick convert', arguments, local_options) Paperclip.run("magick convert", arguments, local_options)
else else
Paperclip.run('convert', arguments, local_options) Paperclip.run("convert", arguments, local_options)
end end
end end
...@@ -48,9 +48,9 @@ module Paperclip ...@@ -48,9 +48,9 @@ module Paperclip
# See Paperclip.run for the available options. # See Paperclip.run for the available options.
def identify(arguments = "", local_options = {}) def identify(arguments = "", local_options = {})
if Gem.win_platform? if Gem.win_platform?
Paperclip.run('magick identify', arguments, local_options) Paperclip.run("magick identify", arguments, local_options)
else else
Paperclip.run('identify', arguments, local_options) Paperclip.run("identify", arguments, local_options)
end end
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment