From 386765f00380a61a66903ab65cd368e64c1ed17f Mon Sep 17 00:00:00 2001 From: HoneyryderChuck Date: Mon, 30 Dec 2019 02:45:00 +0000 Subject: [PATCH] setting path as bundler config --- test/support/ci/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/support/ci/build.sh b/test/support/ci/build.sh index 98b12dc4..d6025c81 100755 --- a/test/support/ci/build.sh +++ b/test/support/ci/build.sh @@ -13,7 +13,9 @@ fi export PATH=$GEM_HOME/bin:$BUNDLE_PATH/gems/bin:$PATH mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME" gem install bundler -v="1.17.3" --no-doc --conservative -cd /home && bundle install --jobs 4 --path vendor && \ +cd /home && \ +bundle config set path 'vendor' && \ +bundle install --jobs 4 && \ bundle exec rake test:ci RET=$?