From 429ba7af5b543921ead07ea32a0ca05e8b7b8678 Mon Sep 17 00:00:00 2001 From: Matt Cargile <74641867+mattcargile@users.noreply.github.com> Date: Wed, 17 Jul 2024 09:12:29 -0500 Subject: [PATCH] fix(scoop-alias): Fix 'Option --verbose not recognized.' (#6062) --- CHANGELOG.md | 6 ++++++ libexec/scoop-alias.ps1 | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08a15bda7c..d06c708b3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/libexec/scoop-alias.ps1 b/libexec/scoop-alias.ps1 index 4c07beeb1a..677b9337f7 100644 --- a/libexec/scoop-alias.ps1 +++ b/libexec/scoop-alias.ps1 @@ -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