summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn <john.mccrae@progress.com>2023-03-01 08:29:29 -0800
committerJohn <john.mccrae@progress.com>2023-03-01 08:29:29 -0800
commit0089a2eb94b154302ad47daf57eaafd571bacb4f (patch)
tree15c3166976e5fd361332cda528181ba27d2e2b6e
parent0c509c5e1d5150b408ecbe5cf223428b16432054 (diff)
downloadchef-0089a2eb94b154302ad47daf57eaafd571bacb4f.tar.gz
Updating Ruby 3.0 support in gemspec et al
Signed-off-by: John <john.mccrae@progress.com>
-rw-r--r--.expeditor/scripts/bk_win_functional.ps15
1 files changed, 5 insertions, 0 deletions
diff --git a/.expeditor/scripts/bk_win_functional.ps1 b/.expeditor/scripts/bk_win_functional.ps1
index 58354aeeec..f64000b956 100644
--- a/.expeditor/scripts/bk_win_functional.ps1
+++ b/.expeditor/scripts/bk_win_functional.ps1
@@ -14,6 +14,11 @@ Write-Output "Installing Ruby 3.0 and refreshing the path"
Write-Output "`r Removing the old Choco directory with Force!"
Remove-Item -path "C:\ProgramData\chocolatey" -Recurse -Force -ErrorAction SilentlyContinue
+Write-Output "`r Now verifying the \Programdata directory"
+$output = Get-ChildItem -Path "C:\ProgramData"
+Write-Output $output
+Write-Output "`r`n"
+
Write-Output "`r Forcing an installation"
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))