diff --git a/Scripts/list-updates.ps1 b/Scripts/list-updates.ps1 index c6a95e82..d99b162d 100755 --- a/Scripts/list-updates.ps1 +++ b/Scripts/list-updates.ps1 @@ -2,8 +2,8 @@ .SYNOPSIS Lists updates .DESCRIPTION - This PowerShell script lists available software updates for the local machine. - Use "install-updates.ps1" to install the listed updates. + This PowerShell script queries and lists available software updates for the local machine. + NOTE: use 'install-updates.ps1' to install the listed updates. .EXAMPLE PS> ./list-updates .LINK @@ -14,18 +14,18 @@ try { if ($IsLinux) { - "⏳ (1/2) Querying package updates... (use install-updates.ps1 to install them)" + "⏳ (1/2) Querying package updates..." & sudo apt update & sudo apt list --upgradable - "⏳ (2/2) Querying Snap updates... (use install-updates.ps1 to install them)" + "⏳ (2/2) Querying Snap updates..." sudo snap refresh --list } else { - Write-Progress "⏳ Querying available software updates..." " " + Write-Progress "⏳ Querying available software updates..." & winget upgrade Write-Progress -completed "." - Write-Host "(use install-updates.ps1 to install these updates)" } + "NOTE: use 'install-updates.ps1' to install the listed updates." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"