We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ac34d commit c6c4dabCopy full SHA for c6c4dab
ci/tasks/install-windows-updates/run.sh
@@ -89,7 +89,7 @@ run_powershell_command_with_logging 'Install-Module -Name PSWindowsUpdate -Minim
89
updates_remaining=$(get_windows_updates_remaining)
90
echo "Windows Updates to install: ${updates_remaining}" >&2
91
92
-while [[ updates_remaining -ne 0 ]]; do
+while [[ ${updates_remaining} -ne 0 ]]; do
93
set +e # ignore unreachable agent if the vm just went down for reboot
94
run_powershell_command_with_logging "Install-WindowsUpdate -AcceptAll -AutoReboot"
95
set -e
0 commit comments