1
0
Fork 0
mirror of https://github.com/eosswedenorg/antelope-api-healthcheck synced 2026-06-18 05:00:03 +02:00

compile.sh: remove "-p" flag from getopt.

This commit is contained in:
Henrik Hautakoski 2021-12-30 19:07:17 +01:00
parent 26369545af
commit c552551348

View file

@ -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