diff options
author | Tim Smith <tsmith84@gmail.com> | 2020-12-28 19:22:05 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2020-12-28 19:22:05 -0800 |
commit | 58dcc31cd319aad22c6c646c4b08b0f1989b67d6 (patch) | |
tree | 7e987296f7add4de5ba31f95ea7409efdc29aeb9 /.expeditor | |
parent | 62a0ab104acb71c6557be754e598036feb0c4cbc (diff) | |
download | chef-58dcc31cd319aad22c6c646c4b08b0f1989b67d6.tar.gz |
Avoid a bundler deprecation warningscripts
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to '.expeditor')
-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" |