Add 1 retry for more specific cases

pull/511/head
romanitho 2023-12-06 23:27:20 +01:00
parent c5009b4a3e
commit 9fe43c8f0a
1 changed files with 25 additions and 27 deletions

View File

@ -44,7 +44,7 @@ Function Update-App ($app) {
}
#Check if application updated properly
$FailedToUpgrade = $false
#$FailedToUpgrade = $false
$ConfirmInstall = Confirm-Installation $($app.Id) $($app.AvailableVersion)
if ($ConfirmInstall -ne $true) {
@ -53,12 +53,14 @@ Function Update-App ($app) {
$PendingReboot = Test-PendingReboot
if ($PendingReboot -eq $true) {
Write-ToLog "-> A Pending Reboot lingers and probably prohibited $($app.Name) from upgrading...`n-> ...an install for $($app.Name) is NOT executed!" "Red"
$FailedToUpgrade = $true
break
}
#If app failed to upgrade, run Install command
Write-ToLog "-> An upgrade for $($app.Name) failed, now trying an install instead..." "Yellow"
#If app failed to upgrade, run Install command (2 tries max - some apps get uninstalled after single "Install" command.)
$retry = 1
While (($ConfirmInstall -eq $false) -and ($retry -le 2)) {
Write-ToLog "-> An upgrade for $($app.Name) failed, now trying an install instead... ($retry/2)" "Yellow"
if ($ModsOverride) {
Write-ToLog "-> Running (overriding default): Winget install --id $($app.Id) -e --accept-package-agreements --accept-source-agreements -s winget --force --override $ModsOverride"
@ -76,24 +78,20 @@ Function Update-App ($app) {
#Check if application installed properly
$ConfirmInstall = Confirm-Installation $($app.Id) $($app.AvailableVersion)
if ($ConfirmInstall -eq $false) {
$FailedToUpgrade = $true
$retry += 1
}
}
switch ($FailedToUpgrade)
{
switch ($ConfirmInstall) {
# Upgrade/install was successful
$false
{
$true {
if ($ModsInstalled) {
Write-ToLog "Modifications for $($app.Id) after upgrade/install are being applied..." "Yellow"
& "$ModsInstalled"
}
}
# Upgrade/install was unsuccessful
$true
{
$false {
if ($ModsNotInstalled) {
Write-ToLog "Modifications for $($app.Id) after a failed upgrade/install are being applied..." "Yellow"
& "$ModsNotInstalled"
@ -104,7 +102,7 @@ Function Update-App ($app) {
Write-ToLog "########## WINGET UPGRADE PROCESS FINISHED FOR APPLICATION ID '$($App.Id)' ##########" "Gray"
#Notify installation
if ($FailedToUpgrade -eq $false) {
if ($ConfirmInstall -eq $true) {
#Send success updated app notification
Write-ToLog "$($app.Name) updated to $($app.AvailableVersion) !" "Green"