File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,9 +87,9 @@ function Ask-IncludeAPI {
87
87
Write-Host - ForegroundColor Yellow " [N] No"
88
88
Write-Host " "
89
89
90
- $input = Read-Host - Prompt " Your choice [Y, N, or ENTER (default is Y)]"
90
+ $answer = Read-Host - Prompt " Your choice [Y, N, or ENTER (default is Y)]"
91
91
92
- return ($input -eq " Y " -or $input -eq " y" -or $input -eq " " )
92
+ return ($answer -ieq " y" -or $answer -eq " " )
93
93
}
94
94
95
95
function Ask-UseExistingAPI {
@@ -100,9 +100,9 @@ function Ask-UseExistingAPI {
100
100
Write-Host - ForegroundColor Yellow " [N] No"
101
101
Write-Host " "
102
102
103
- $input = Read-Host - Prompt " Your choice [Y, N, or ENTER (default is Y)]"
103
+ $answer = Read-Host - Prompt " Your choice [Y, N, or ENTER (default is Y)]"
104
104
105
- return ($input -eq " Y " -or $input -eq " y" -or $input -eq " " )
105
+ return ($answer -ieq " y" -or $answer -eq " " )
106
106
}
107
107
108
108
function Copy-ExtraItems {
You can’t perform that action at this time.
0 commit comments