diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/static/setup.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/static/setup.ps1 b/docs/static/setup.ps1 index 5cde921..f550333 100644 --- a/docs/static/setup.ps1 +++ b/docs/static/setup.ps1 @@ -16,13 +16,13 @@ function Get-Choice-From-Options { }
Write-Host "$($Options.length + 1)) Quit"
- $selection = Read-Host $Prompt
+ $selection = (Read-Host $Prompt) -as [int]
if ($selection -eq $Options.length + 1) {
Write-Host "Goodbye!"
exit 1
}
- elseif ($selection -le $Options.length) {
+ elseif ($selection -le $Options.length -and $selection -gt 0) {
$choice = $($selection - 1)
break
}
|