Skip to content

Commit

Permalink
Merge pull request refinery#667 from srawlins/patch-2
Browse files Browse the repository at this point in the history
Fixing issue refinery#662; the to_run string should not be altered through a '|'
  • Loading branch information
parndt committed May 9, 2011
2 parents 56c13be + 9610852 commit 2e38a8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/refinerycms 100755 → 100644
Expand Up @@ -374,7 +374,7 @@ module Refinery

if Refinery::WINDOWS
to_run = ['"'] + to_run + ['"']
to_run = %w(cmd /c) | to_run.map{|c| c.gsub(/\//m, '\\')}
to_run = %w(cmd /c) + to_run.map{|c| c.gsub(/\//m, '\\')}
end

to_run = to_run.join(' ')
Expand Down

0 comments on commit 2e38a8c

Please sign in to comment.