fix(scoop-alias): Fix 'Option --verbose not recognized.' (#6062)

This commit is contained in:
Matt Cargile
2024-07-17 09:12:29 -05:00
committed by GitHub
parent be56faf290
commit 429ba7af5b
2 changed files with 7 additions and 1 deletions

View File

@@ -39,7 +39,7 @@ if ($SubCommand -notin $SubCommands) {
exit 1
}
$opt, $other, $err = getopt $Args 'v' , 'verbose'
$opt, $other, $err = getopt $Args 'v' 'verbose'
if ($err) { "scoop alias: $err"; exit 1 }
$name, $command, $description = $other