From be18af2e2869df15ca212172f2b6888b84d30703 Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Mon, 17 Oct 2022 19:58:19 +0200 Subject: [PATCH] Update check-time-zone.ps1 --- Scripts/check-time-zone.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/check-time-zone.ps1 b/Scripts/check-time-zone.ps1 index 13c64a45..3cab317e 100755 --- a/Scripts/check-time-zone.ps1 +++ b/Scripts/check-time-zone.ps1 @@ -16,7 +16,7 @@ try { $Time = $((Get-Date).ToShortTimeString()) $TZ = (Get-Timezone) if ($TZ.SupportsDaylightSavingTime) { $DST=" & +01:00:00 DST" } else { $DST="" } - "✅ $Time in $($TZ.Id) (UTC+$($TZ.BaseUtcOffset)$DST)" + "✅ $Time in $($TZ.Id) (UTC+$($TZ.BaseUtcOffset)$DST)." exit 0 # success } catch { "⚠️ Error in line $($_.InvocationInfo.ScriptLineNumber): $($Error[0])"