add missing options

这个提交包含在:
belliash 2012-01-30 15:59:08 +01:00
父节点 66c370f87e
当前提交 b6d83d042c
共有 2 个文件被更改,包括 13 次插入0 次删除

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

查看文件

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