diff --git a/Scripts/upgrade-ubuntu.ps1 b/Scripts/upgrade-ubuntu.ps1 index 334827d0..6f5e3790 100755 --- a/Scripts/upgrade-ubuntu.ps1 +++ b/Scripts/upgrade-ubuntu.ps1 @@ -13,13 +13,13 @@ try { "" - "👉 Step 1/4: Perform a backup" + "⏳ (1/4) Perform a backup!" "It's strongly recommended to backup your data BEFORE the upgrade!" - $Confirm = read-host "Press to continue..." + $Confirm = Read-Host "Press to continue..." "" - "👉 Step 2/4: Install update-manager-core, Upgrade Packages & Reboot" - $Confirm = read-host "Enter to perform this step (otherwise it will be skipped)" + "⏳ (2/4) Install update-manager-core, Upgrade Packages & Reboot" + $Confirm = Read-Host "Enter to perform this step (otherwise it will be skipped)" if ($Confirm -eq "yes") { sudo apt install update-manager-core sudo apt update @@ -29,15 +29,15 @@ try { } "" - "👉 Step 3/4: Remove obsolete kernel modules" - $Confirm = read-host "Enter to perform this step (otherwise it will be skipped)" + "⏳ (3/4) Remove obsolete kernel modules" + $Confirm = Read-Host "Enter to perform this step (otherwise it will be skipped)" if ($Confirm -eq "yes") { sudo apt --purge autoremove } "" - "👉 Step 4/4: Upgrade Ubuntu & reboot" - $Confirm = read-host "Enter to upgrade to latest LTS release, to upgrade to latest Ubuntu release (otherwise this step will be skipped)" + "⏳ (4/4) Upgrade Ubuntu & reboot" + $Confirm = Read-Host "Enter to upgrade to latest LTS release, to upgrade to latest Ubuntu release (otherwise this step will be skipped)" if ($Confirm -eq "LTS") { sudo do-release-upgrade sudo reboot