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

@@ -1,3 +1,9 @@
## [Unreleased](https://github.com/ScoopInstaller/Scoop/compare/master...develop)
### Bug Fixes
- **scoop-alias:** Fix 'Option --verbose not recognized.' ([#6062](https://github.com/ScoopInstaller/Scoop/issues/6062))
## [v0.5.1](https://github.com/ScoopInstaller/Scoop/compare/v0.5.0...v0.5.1) - 2024-07-16
### Bug Fixes

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