diff options
author | Andre Arko <andre@arko.net> | 2014-04-11 11:52:38 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2014-04-27 10:29:31 -0700 |
commit | c397a53ff39990a8acc005ee2df5f0e9e6578258 (patch) | |
tree | 6ea97816359aba7071ef17d05d21927245359537 /Rakefile | |
parent | 38f195e11f37ce5139af4ff3384eb2f26c2edb19 (diff) | |
download | bundler-c397a53ff39990a8acc005ee2df5f0e9e6578258.tar.gz |
print path to rubygems checkout
[ci skip]
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -162,7 +162,9 @@ begin end task "setup_co" do - ENV["RUBYOPT"] = "-I#{File.expand_path ENV['RG']} #{rubyopt}" + rg = File.expand_path ENV['RG'] + puts "Running specs against Rubygems in #{rg}..." + ENV["RUBYOPT"] = "-I#{rg} #{rubyopt}" end task "co" => "setup_co" |