diff options
Diffstat (limited to '')
-rwxr-xr-x | hm/soispha/pkgs/scripts/apps/fupdate.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hm/soispha/pkgs/scripts/apps/fupdate.sh b/hm/soispha/pkgs/scripts/apps/fupdate.sh index afc3ab13..0032be4b 100755 --- a/hm/soispha/pkgs/scripts/apps/fupdate.sh +++ b/hm/soispha/pkgs/scripts/apps/fupdate.sh @@ -151,11 +151,13 @@ done case "$1" in "flake") shift 1 + [ "$1" = "--" ] && shift 1; main "$@" ;; *) command="$1" shift 1 + [ "$1" = "--" ] && shift 1; if which update-"$command" >/dev/null 2>&1; then update-"$command" "$@" else |