diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-12-28 18:50:08 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-12-28 18:50:08 -0800 |
commit | 62a0ab104acb71c6557be754e598036feb0c4cbc (patch) | |
tree | 57ca8f05bad776bbeed01bdaf66c6895eda0235e /.expeditor | |
parent | 9cf30b81a1c7ba54d647f433bff4220d620e01a3 (diff) | |
download | chef-62a0ab104acb71c6557be754e598036feb0c4cbc.tar.gz |
Cache gem installs on Windows
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor')
-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 |