Skip to content

Commit

Permalink
Don't use Shellwords.shellescape.
Browse files Browse the repository at this point in the history
It's not portable to old Rubies, and we don't really need it anyway.
  • Loading branch information
nex3 committed Sep 29, 2010
1 parent 320cf7a commit 6509162
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -60,7 +60,7 @@ task :permissions do
require 'shellwords'
Dir.glob('test/**/*_test.rb') do |file|
next if file =~ %r{^test/haml/spec/}
sh %{chmod a+rx #{Shellwords.shellescape file}}
sh %{chmod a+rx #{file}}
end
end

Expand Down

0 comments on commit 6509162

Please sign in to comment.