diff --git a/build.sh b/build.sh index 8d3e11c..8f6b01c 100755 --- a/build.sh +++ b/build.sh @@ -44,7 +44,7 @@ options: EOUSAGE } -opts="$(getopt -o 'h?' --long 'all,help,no-clone,no-build,library:,src:,logs:,namespaces:' -- "$@" || { usage >&2 && false; })" +opts="$(getopt -o 'h?' --long 'help,all,no-clone,no-build,library:,src:,logs:,namespaces:' -- "$@" || { usage >&2 && false; })" eval set -- "$opts" doClone=1 diff --git a/push.sh b/push.sh index 6fa6596..f02f424 100755 --- a/push.sh +++ b/push.sh @@ -38,7 +38,7 @@ options: EOUSAGE } -opts="$(getopt -o 'h?' --long 'all,help,no-push,library:,namespaces:' -- "$@" || { usage >&2 && false; })" +opts="$(getopt -o 'h?' --long 'help,all,no-push,library:,logs:,namespaces:' -- "$@" || { usage >&2 && false; })" eval set -- "$opts" doPush=1 @@ -54,6 +54,7 @@ while true; do --all) buildAll=1 ;; --no-push) doPush= ;; --library) library="$1" && shift ;; + --logs) logs="$1" && shift ;; --namespaces) namespaces="$1" && shift ;; --) break