diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-03-14 19:19:00 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-03-14 19:19:00 +0100 |
commit | 222792c45cdf945368e60bf8c98ecfb0c8a0a4ab (patch) | |
tree | 3516e42f55c926a10f58b8de269c098ba7042992 | |
parent | fd2def6d9fc0f2bd9cfbdee477e0d1931a0465c2 (diff) | |
download | bundler-222792c45cdf945368e60bf8c98ecfb0c8a0a4ab.tar.gz |
Normalize install command
To how it's done in other places in the Rakefile
-rw-r--r-- | Rakefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ namespace :spec do gem_install_command = "install --no-document --conservative " + deps.sort_by {|name, _| name }.map do |name, version| "'#{name}:#{version}'" end.join(" ") - sh %(#{Gem.ruby} -S gem #{gem_install_command}) + sh "gem #{gem_install_command}" # Download and install gems used inside tests $LOAD_PATH.unshift("./spec") |