From e5b66841dc2663c5de77aadea3899ca8af8b8bd7 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Fri, 14 Jul 2023 12:45:50 +0200 Subject: [PATCH] Update check-pending-reboot.ps1 --- Scripts/check-pending-reboot.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/check-pending-reboot.ps1 b/Scripts/check-pending-reboot.ps1 index 3eed3854..0b81101a 100755 --- a/Scripts/check-pending-reboot.ps1 +++ b/Scripts/check-pending-reboot.ps1 @@ -24,7 +24,7 @@ try { $Reason = "" if ($IsLinux) { if (Test-Path "/var/run/reboot-required") { - $Reason = "found /var/run/reboot-required" + $Reason = "found: /var/run/reboot-required" Write-Host "⚠️ Pending reboot ($Reason)" } } else {