From 82558e25d6ee11dc432de5910559d99136ff9f26 Mon Sep 17 00:00:00 2001 From: Benedikt Reinartz Date: Tue, 23 Nov 2021 09:37:28 +0100 Subject: [PATCH] fix(scoop-update): Fix scoop update -a requiring arguments (#4531) --- libexec/scoop-update.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libexec/scoop-update.ps1 b/libexec/scoop-update.ps1 index b84c6ab99d..9927da782c 100644 --- a/libexec/scoop-update.ps1 +++ b/libexec/scoop-update.ps1 @@ -28,7 +28,7 @@ reset_aliases -$opt, $apps, $err = getopt $args 'gfiksqa:' 'global', 'force', 'independent', 'no-cache', 'skip', 'quiet', 'all' +$opt, $apps, $err = getopt $args 'gfiksqa' 'global', 'force', 'independent', 'no-cache', 'skip', 'quiet', 'all' if ($err) { "scoop update: $err"; exit 1 } $global = $opt.g -or $opt.global $force = $opt.f -or $opt.force