Move new options to .getopt.sh so that upstream script can recognize them

merge-requests/16/head
Raphaël Hertzog 5 years ago
parent 51e3fbe99f
commit 98a1cab91d

@ -5,7 +5,9 @@
# --subdir <directory-name>
# --version <version>
# --variant <variant>
# --installer
# --no-clean
# -v | --verbose
# -s | --salt
BUILD_OPTS_SHORT="d:pa:vs"
BUILD_OPTS_LONG="distribution:,proposed-updates,arch:,subdir:,version:,variant:,verbose,salt"
BUILD_OPTS_LONG="distribution:,proposed-updates,arch:,subdir:,version:,variant:,verbose,salt,installer,no-clean"

@ -100,7 +100,7 @@ run_and_log() {
. $(dirname $0)/.getopt.sh
# Parsing command line options
temp=$(getopt -o "$BUILD_OPTS_SHORT" -l "$BUILD_OPTS_LONG,get-image-path,installer,no-clean" -- "$@")
temp=$(getopt -o "$BUILD_OPTS_SHORT" -l "$BUILD_OPTS_LONG,get-image-path" -- "$@")
eval set -- "$temp"
while true; do
case "$1" in

Loading…
Cancel
Save