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:
parent
15cbbcd21d
commit
39de355423
2
build.sh
2
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
|
||||
|
|
|
|||
3
push.sh
3
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue