diff options
author | Chad Woolley <thewoolleyman@gmail.com> | 2008-08-24 17:23:39 -0700 |
---|---|---|
committer | Michael Koziarski <michael@koziarski.com> | 2008-08-25 10:34:01 +0200 |
commit | fb20d6f09d5e91280bf2b5888a7299b50dba7a7b (patch) | |
tree | e3f27efefa2a4238ea319ffaa5af8dc5ca1e0452 /ci | |
parent | 8a4d7233aafc2f140f859fb02e686303fcac63ba (diff) | |
download | rails-fb20d6f09d5e91280bf2b5888a7299b50dba7a7b.tar.gz rails-fb20d6f09d5e91280bf2b5888a7299b50dba7a7b.tar.bz2 rails-fb20d6f09d5e91280bf2b5888a7299b50dba7a7b.zip |
properly reference geminstaller config under ci dir
Diffstat (limited to 'ci')
-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 049f7b7975..7d9cf679e2 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 --exceptions' +build_results[:geminstaller] = system 'sudo geminstaller --config=#{root_dir}/ci/geminstaller.yml --exceptions' cd "#{root_dir}/activesupport" do puts |