add missing options

This commit is contained in:
belliash 2012-01-30 15:59:08 +01:00
parent 66c370f87e
commit b6d83d042c
2 changed files with 13 additions and 0 deletions

11
ezbuild
View File

@ -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}"
;;

View File

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