mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-04 22:38:34 +02:00
Fix typo
This commit is contained in:
parent
909c8fa0ff
commit
aa22e90beb
@ -27,11 +27,11 @@ try {
|
|||||||
} elseif ($Temp -gt 50) {
|
} elseif ($Temp -gt 50) {
|
||||||
$Reply = "$($Temp)°C CPU temperature, that's quite high"
|
$Reply = "$($Temp)°C CPU temperature, that's quite high"
|
||||||
} elseif ($Temp -gt 0) {
|
} elseif ($Temp -gt 0) {
|
||||||
$Reply = "$(Temp)°C CPU temperature"
|
$Reply = "$($Temp)°C CPU temperature"
|
||||||
} elseif ($Temp -gt -20) {
|
} elseif ($Temp -gt -20) {
|
||||||
$Reply = "$(Temp)°C CPU temperature, that's quite low"
|
$Reply = "$($Temp)°C CPU temperature, that's quite low"
|
||||||
} else {
|
} else {
|
||||||
$Reply = "$(Temp)°C CPU temperature, that's too low!"
|
$Reply = "$($Temp)°C CPU temperature, that's too low!"
|
||||||
}
|
}
|
||||||
"✔️ $Reply"
|
"✔️ $Reply"
|
||||||
& "$PSScriptRoot/speak-english.ps1" "$Reply"
|
& "$PSScriptRoot/speak-english.ps1" "$Reply"
|
||||||
|
Loading…
Reference in New Issue
Block a user