add missing options

Esse commit está contido em:
belliash 2012-01-30 15:59:08 +01:00
commit b6d83d042c
2 arquivos alterados com 13 adições e 0 exclusões

11
ezbuild
Ver arquivo

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

Ver arquivo

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