diff options
author | Tim Smith <tsmith@chef.io> | 2020-05-06 23:09:03 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 23:09:03 -0700 |
commit | cd27c5d9e2fe13f723e301fbc759e9dcc399cce8 (patch) | |
tree | 64075a0bfff5932502d4844ff07837fccc76c6d0 /scripts | |
parent | 801b624936e8ccdd4c59068bca7b7540cf826db7 (diff) | |
parent | 74a1d41ce956cb47f06ef65fdc827ea6ce7216be (diff) | |
download | chef-cd27c5d9e2fe13f723e301fbc759e9dcc399cce8.tar.gz |
Merge pull request #9818 from chef/cache_gems
Cache the gems during the Test Kitchen tests
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bk_tests/bk_linux_exec.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/bk_tests/bk_linux_exec.sh b/scripts/bk_tests/bk_linux_exec.sh index a09b121000..f81a10da90 100755 --- a/scripts/bk_tests/bk_linux_exec.sh +++ b/scripts/bk_tests/bk_linux_exec.sh @@ -38,7 +38,7 @@ echo 'gem: --no-document' >> ~/.gemrc gem update --system $(grep rubygems omnibus_overrides.rb | cut -d'"' -f2) gem install bundler -v $(grep :bundler omnibus_overrides.rb | cut -d'"' -f2) --force sudo iptables -L DOCKER || ( echo "DOCKER iptables chain missing" ; sudo iptables -N DOCKER ) -bundle install --jobs=3 --retry=3 --path=vendor/bundle +bundle install --jobs=3 --retry=3 --path=../vendor/bundle echo "--- Config information" |