summaryrefslogtreecommitdiff
path: root/.expeditor/scripts/bk_win_prep.ps1
diff options
context:
space:
mode:
Diffstat (limited to '.expeditor/scripts/bk_win_prep.ps1')
-rw-r--r--.expeditor/scripts/bk_win_prep.ps18
1 files changed, 0 insertions, 8 deletions
diff --git a/.expeditor/scripts/bk_win_prep.ps1 b/.expeditor/scripts/bk_win_prep.ps1
index 1a09378fee..243db0f822 100644
--- a/.expeditor/scripts/bk_win_prep.ps1
+++ b/.expeditor/scripts/bk_win_prep.ps1
@@ -2,17 +2,9 @@ echo "--- system details"
$Properties = 'Caption', 'CSName', 'Version', 'BuildType', 'OSArchitecture'
Get-CimInstance Win32_OperatingSystem | Select-Object $Properties | Format-Table -AutoSize
-echo "--- update bundler"
-
ruby -v
if (-not $?) { throw "Can't run Ruby. Is it installed?" }
-$env:BUNDLER_VERSION=$(findstr bundler omnibus_overrides.rb | %{ $_.split(" ")[3] })
-$env:BUNDLER_VERSION=($env:BUNDLER_VERSION -replace '"', "")
-echo $env:BUNDLER_VERSION
-
-gem install bundler -v $env:BUNDLER_VERSION --force --no-document --quiet
-if (-not $?) { throw "Unable to update Bundler" }
bundle --version
echo "--- bundle install"