From 6c5cd3e137674f7985af7f13eab442e44f2f2636 Mon Sep 17 00:00:00 2001 From: Chris Long Date: Wed, 20 Jan 2021 14:23:44 -0800 Subject: [PATCH] Update install-utilities.ps1 Don't check checksums for GoogleChrome choco package --- Vagrant/scripts/install-utilities.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Vagrant/scripts/install-utilities.ps1 b/Vagrant/scripts/install-utilities.ps1 index c3b20e9..11703e9 100755 --- a/Vagrant/scripts/install-utilities.ps1 +++ b/Vagrant/scripts/install-utilities.ps1 @@ -15,6 +15,9 @@ If ($(hostname) -eq "win10") { & "C:\Program Files\Classic Shell\ClassicStartMenu.exe" "-xml" "c:\vagrant\resources\windows\MenuSettings.xml" regedit /s c:\vagrant\resources\windows\MenuStyle_Default_Win7.reg } -choco install -y --limit-output --no-progress NotepadPlusPlus GoogleChrome WinRar +choco install -y --limit-output --no-progress NotepadPlusPlus WinRar + +# The checksums for the GoogleChrome package are frequently out of date and cause the script to fail +choco install -y --limit-output --no-progress GoogleChrome Write-Host "$('[{0:HH:mm}]' -f (Get-Date)) Utilties installation complete!"