summaryrefslogtreecommitdiff
path: root/src/diffpkg.in
diff options
context:
space:
mode:
authorLevente Polyak <anthraxx@archlinux.org>2022-08-31 02:13:00 +0200
committerLevente Polyak <anthraxx@archlinux.org>2022-08-31 02:26:47 +0200
commit53be0527e2c9285476a27331ad1851819e849c45 (patch)
treeaba01b8e80cc5d7880c8a1940967b6e8c0693aea /src/diffpkg.in
parentf4e8047d654254bbd3614ecaa448b41fa1f056d7 (diff)
downloaddevtools-53be0527e2c9285476a27331ad1851819e849c45.tar.xz
fix: properly check for invalid argument in checkpkg and diffpkg
The option switch case only matches by splitting via '|' instead of ','
Diffstat (limited to 'src/diffpkg.in')
-rw-r--r--src/diffpkg.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/diffpkg.in b/src/diffpkg.in
index 5bae805..b964d44 100644
--- a/src/diffpkg.in
+++ b/src/diffpkg.in
@@ -129,7 +129,7 @@ while (( $# )); do
shift
break
;;
- -*,--*)
+ -*|--*)
die "invalid argument: %s" "$1"
;;
*)