summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-14 19:19:00 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-03-14 19:19:00 +0100
commit222792c45cdf945368e60bf8c98ecfb0c8a0a4ab (patch)
tree3516e42f55c926a10f58b8de269c098ba7042992
parentfd2def6d9fc0f2bd9cfbdee477e0d1931a0465c2 (diff)
downloadbundler-222792c45cdf945368e60bf8c98ecfb0c8a0a4ab.tar.gz
Normalize install command
To how it's done in other places in the Rakefile
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index ab8d981a6b..d7bb417b60 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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")