Extra Line removed (logs)

pull/467/head
romanitho 2023-11-02 18:22:29 +01:00
parent 737d049e6f
commit 46f15becd8
2 changed files with 12 additions and 6 deletions

View File

@ -538,8 +538,14 @@ Write-Host "`t________________________________________________________`n `n "
if (!$Uninstall) {
Write-ToLog "Installing WAU to $WAUinstallPath\"
Install-Prerequisites
Update-Winget
Install-WingetAutoUpdate
$UpdateWinget = Update-Winget
if ($UpdateWinget -ne "fail") {
Write-Host "`r" #Extra Line in console only
Install-WingetAutoUpdate
}
else {
Write-ToLog "Winget is mandatory to execute WAU." "Red"
}
}
else {
Write-ToLog "Uninstalling WAU..."

View File

@ -68,17 +68,17 @@ Function Update-WinGet {
#If multiple versions, pick most recent one
$WingetCmd = $WingetInfo[-1].FileName
& $WingetCmd source reset --force
Write-ToLog "-> WinGet sources reset.`n" "green"
Write-ToLog "-> WinGet sources reset." "green"
$return = "success"
}
catch {
Write-ToLog "-> Failed to install WinGet MSIXBundle for App Installer...`n" "red"
Write-ToLog "-> Failed to install WinGet MSIXBundle for App Installer..." "red"
#Force Store Apps to update
Update-StoreApps
$return = "fail"
}
#Remove WinGet MSIXBundle
Remove-Item -Path $WingetInstaller -Force -ErrorAction SilentlyContinue
@ -86,7 +86,7 @@ Function Update-WinGet {
return $return
}
else {
Write-ToLog "-> WinGet is up to date: v$WinGetInstalledVersion`n" "Green"
Write-ToLog "-> WinGet is up to date: v$WinGetInstalledVersion" "Green"
return "current"
}
}