summaryrefslogtreecommitdiff
path: root/common.mk
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-26 17:14:16 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-10-26 17:14:16 +0000
commit3c6e07327536ef5d2dae3336cb53079bedf515e8 (patch)
tree2a4ab546930d58f619536b2af524e77bf4214996 /common.mk
parent0f5adc8661da99c55e7a625076ba9656cbe494d7 (diff)
Quote with double quotes for Windows
* common.mk (test-bundled-gems-prepare): single quote cannot quote shell meta characters on Windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60457 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'common.mk')
-rw-r--r--common.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.mk b/common.mk
index 7a1c941374..b755cd65f6 100644
--- a/common.mk
+++ b/common.mk
@@ -1165,7 +1165,7 @@ test-bundled-gems-fetch: $(PREP)
test-bundled-gems-prepare: test-bundled-gems-precheck test-bundled-gems-fetch
$(XRUBY) -C "$(srcdir)" bin/gem install --no-ri --no-rdoc \
- --install-dir .bundle --conservative 'minitest:~> 5' 'test-unit' 'rake' 'hoe' 'yard' 'pry' 'packnga'
+ --install-dir .bundle --conservative "minitest:~> 5" 'test-unit' 'rake' 'hoe' 'yard' 'pry' 'packnga'
PREPARE_BUNDLED_GEMS = test-bundled-gems-prepare
test-bundled-gems: $(TEST_RUNNABLE)-test-bundled-gems