From 58dcc31cd319aad22c6c646c4b08b0f1989b67d6 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 28 Dec 2020 19:22:05 -0800 Subject: Avoid a bundler deprecation warning Signed-off-by: Tim Smith --- .expeditor/scripts/bk_win_functional.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- cgit v1.2.1