diff --git a/ezbuild b/ezbuild index 8aafce2..4811d51 100755 --- a/ezbuild +++ b/ezbuild @@ -46,6 +46,17 @@ until [[ -z "${1}" ]]; do -s|--syscheck) EZOPT_SYSCHECKONLY=true ;; + -t|--notrigger) + EZOPT_NOTRIGGER=true + ;; + -T|--tarballformat) + shift + if [ -z ${1} ]; then + die "--tarballformat requires an additional argument!" + else + TARBALLFORMAT="${1}" + fi + ;; *) die "Unrecognized option ${1}" ;; diff --git a/libraries/common b/libraries/common index 0b0869e..a48d093 100644 --- a/libraries/common +++ b/libraries/common @@ -404,6 +404,8 @@ function showEzbuildUsage() { echo -e " -p\t--purge\t\tclears temporary folder" echo -e " -P\t--purgeonly\tclears temporary folder and exits" echo -e " -s\t--syscheck\tperforms prerequisites check only" + echo -e " -t\t--notrigger\tdisables all build triggers and modules" + echo -e " -T\t--tarballformat\toverrides default compression algorithm" echo -e "\n" exit 0 }