Skip to content

Commit

Permalink
fix(scoop-alias): Fix 'Option --verbose not recognized.' (#6062)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcargile authored Jul 17, 2024
1 parent be56faf commit 429ba7a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion libexec/scoop-alias.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 429ba7a

Please sign in to comment.