Add a few minor tweaks to bashbrew for consistency

Also, run through a `--no-push` run of `push.sh` in Travis, and give Travis an explicit language so we don't get funny Ruby-related nonsense in our build logs.
This commit is contained in:
Tianon Gravi 2014-10-01 21:18:57 -06:00
parent 15cbbcd21d
commit 39de355423
2 changed files with 3 additions and 2 deletions

View File

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

View File

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