mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-03-25 05:26:47 +01:00
Fix typo
This commit is contained in:
parent
909c8fa0ff
commit
aa22e90beb
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user