From 6509162d17637084a56fbed92e6439d708ea6cde Mon Sep 17 00:00:00 2001 From: Nathan Weizenbaum Date: Wed, 29 Sep 2010 11:03:59 -0700 Subject: [PATCH] Don't use Shellwords.shellescape. It's not portable to old Rubies, and we don't really need it anyway. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 166a5f934f..91aa8c6d32 100644 --- a/Rakefile +++ b/Rakefile @@ -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