appimage: Exit with error if unsupported parameters are passed

This commit is contained in:
Mike Salvatore 2021-04-29 15:19:29 -04:00
parent fe25cd257f
commit f91a52f0c0
1 changed files with 3 additions and 0 deletions

View File

@ -309,6 +309,9 @@ case "$1" in
missing_argument "$1"
fi
;;
-*)
echo "Error: Unsupported parameter $1" >&2
exit 1
esac
done