From c552551348bedb67fc82ddd73ce452b25449909c Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 30 Dec 2021 19:07:17 +0100 Subject: [PATCH] compile.sh: remove "-p" flag from getopt. --- compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.sh b/compile.sh index 33722c6..85e65ff 100755 --- a/compile.sh +++ b/compile.sh @@ -20,7 +20,7 @@ function usage() { exit 1 } -options=$(getopt -n "${0##*/}" -o "ht:a:p" -l "help,target:,arch:" -- "$@") +options=$(getopt -n "${0##*/}" -o "ht:a:" -l "help,target:,arch:" -- "$@") [ $? -eq 0 ] || usage