Skip to content

Commit 0f5097b

Browse files
authored
fix(scoop-update): Fix scoop update -a requiring arguments (#4531)
1 parent f34be82 commit 0f5097b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libexec/scoop-update.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
reset_aliases
3030

31-
$opt, $apps, $err = getopt $args 'gfiksqa:' 'global', 'force', 'independent', 'no-cache', 'skip', 'quiet', 'all'
31+
$opt, $apps, $err = getopt $args 'gfiksqa' 'global', 'force', 'independent', 'no-cache', 'skip', 'quiet', 'all'
3232
if ($err) { "scoop update: $err"; exit 1 }
3333
$global = $opt.g -or $opt.global
3434
$force = $opt.f -or $opt.force

0 commit comments

Comments
 (0)