diff --git a/Scripts/speak-checklist.ps1 b/Scripts/speak-checklist.ps1 index 27daf220..caa40fb2 100755 --- a/Scripts/speak-checklist.ps1 +++ b/Scripts/speak-checklist.ps1 @@ -13,11 +13,12 @@ try { clear-host $Step = 1 foreach($Line in $Lines) { - if ($Line -like "HEAD*") { & "$PSScriptRoot/write-big.ps1" "$Line"; continue } - + if ($Line -like "HEAD*") { & "$PSScriptRoot/write-big.ps1" "$($Line.substring(5))"; continue } + + "" "($Step) $Line" & "$PSScriptRoot/speak-english.ps1" "$Line" - $Dummy = read-host "Press to continue ..." + $Dummy = read-host " Say or press to continue" $Step++ } exit 0