diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-12-28 18:50:08 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-12-30 12:16:57 -0800 |
commit | 74744bd9099e5b5723c44a0c37a21a10a72779fa (patch) | |
tree | 32cb461b6f71b8b678b58bdbf8dd8231cc5ad1a3 | |
parent | 6f18537491f964bce80f36c68cef484b4e904ca6 (diff) | |
download | chef-74744bd9099e5b5723c44a0c37a21a10a72779fa.tar.gz |
Cache gem installs on Windows
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | .expeditor/scripts/bk_win_prep.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.expeditor/scripts/bk_win_prep.ps1 b/.expeditor/scripts/bk_win_prep.ps1 index c0bf97a95f..37796da468 100644 --- a/.expeditor/scripts/bk_win_prep.ps1 +++ b/.expeditor/scripts/bk_win_prep.ps1 @@ -11,5 +11,5 @@ bundle --version if (-not $?) { throw "Can't run Bundler. Is it installed?" } echo "--- bundle install" -bundle install --jobs=3 --retry=3 --without omnibus_package -if (-not $?) { throw "Unable to install gem dependencies" } +bundle install --jobs=3 --retry=3 --path=vendor/bundle --without omnibus_package +if (-not $?) { throw "Unable to install gem dependencies" }
\ No newline at end of file |