diff options
author | Chad Woolley <thewoolleyman@gmail.com> | 2008-08-25 18:49:45 -0700 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-08-26 09:40:19 +0200 |
commit | 289e3b90728cacdb96d61e721b30de566a0a8134 (patch) | |
tree | 8b7c09f91901681d48413f167e9db4168620b012 | |
parent | 52e15abbedab9ef6f3db03ef39fe5cbab9c3ddde (diff) | |
download | rails-289e3b90728cacdb96d61e721b30de566a0a8134.tar.gz rails-289e3b90728cacdb96d61e721b30de566a0a8134.tar.bz2 rails-289e3b90728cacdb96d61e721b30de566a0a8134.zip |
use double quotes
-rwxr-xr-x | ci/ci_build.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/ci_build.rb b/ci/ci_build.rb index 7d9cf679e2..446daba840 100755 --- a/ci/ci_build.rb +++ b/ci/ci_build.rb @@ -14,7 +14,7 @@ root_dir = File.expand_path(File.dirname(__FILE__) + "/..") # for now, use the no-passwd sudoers approach (documented in ci_setup_notes.txt) # A security hole, but there is nothing valuable on rails CI box anyway. -build_results[:geminstaller] = system 'sudo geminstaller --config=#{root_dir}/ci/geminstaller.yml --exceptions' +build_results[:geminstaller] = system "sudo geminstaller --config=#{root_dir}/ci/geminstaller.yml --exceptions" cd "#{root_dir}/activesupport" do puts |