From aa22e90bebe163f3f8bee68ba01dd94b6c61d2bd Mon Sep 17 00:00:00 2001 From: Markus Fleschutz Date: Thu, 2 Dec 2021 15:26:52 +0100 Subject: [PATCH] Fix typo --- Scripts/check-cpu.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Scripts/check-cpu.ps1 b/Scripts/check-cpu.ps1 index 271a1c73..b7637379 100755 --- a/Scripts/check-cpu.ps1 +++ b/Scripts/check-cpu.ps1 @@ -27,11 +27,11 @@ try { } elseif ($Temp -gt 50) { $Reply = "$($Temp)°C CPU temperature, that's quite high" } elseif ($Temp -gt 0) { - $Reply = "$(Temp)°C CPU temperature" + $Reply = "$($Temp)°C CPU temperature" } elseif ($Temp -gt -20) { - $Reply = "$(Temp)°C CPU temperature, that's quite low" + $Reply = "$($Temp)°C CPU temperature, that's quite low" } else { - $Reply = "$(Temp)°C CPU temperature, that's too low!" + $Reply = "$($Temp)°C CPU temperature, that's too low!" } "✔️ $Reply" & "$PSScriptRoot/speak-english.ps1" "$Reply"