diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-12-28 19:22:05 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-12-30 12:17:06 -0800 |
commit | ad74a2d511e9b91c6b59a22421cd95dd187535cb (patch) | |
tree | ca646adbe73f89eaa2d04afec794029d0f07d4a3 | |
parent | 74744bd9099e5b5723c44a0c37a21a10a72779fa (diff) | |
download | chef-ad74a2d511e9b91c6b59a22421cd95dd187535cb.tar.gz |
Avoid a bundler deprecation warning
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | .expeditor/scripts/bk_win_functional.ps1 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.expeditor/scripts/bk_win_functional.ps1 b/.expeditor/scripts/bk_win_functional.ps1 index 7a427dc428..05f8e57248 100644 --- a/.expeditor/scripts/bk_win_functional.ps1 +++ b/.expeditor/scripts/bk_win_functional.ps1 @@ -24,7 +24,8 @@ Write-Output "--- configure winrm" winrm quickconfig -q Write-Output "--- bundle install" -bundle install --jobs=3 --retry=3 --without omnibus_package +bundle config set --local without 'omnibus_package' +bundle install --jobs=3 --retry=3 if (-not $?) { throw "Unable to install gem dependencies" } Write-Output "+++ bundle exec rake spec:functional" |