mirror of
https://github.com/nix-community/nix-on-droid.git
synced 2025-11-08 19:46:07 +01:00
Add --builders flag to PASSTHROUGH_OPTS
This commit is contained in:
parent
4122727e1b
commit
c7993111eb
1 changed files with 2 additions and 1 deletions
|
|
@ -49,6 +49,7 @@ function doHelp() {
|
||||||
echo "Options passed on to nix build"
|
echo "Options passed on to nix build"
|
||||||
echo
|
echo
|
||||||
echo " -I|--include PATH"
|
echo " -I|--include PATH"
|
||||||
|
echo " --builders BUILDERS"
|
||||||
echo " --cores NUM"
|
echo " --cores NUM"
|
||||||
echo " --keep-failed"
|
echo " --keep-failed"
|
||||||
echo " --keep-going"
|
echo " --keep-going"
|
||||||
|
|
@ -135,7 +136,7 @@ while [[ $# -gt 0 ]]; do
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
--max-jobs|--cores)
|
--builders|--cores|--max-jobs)
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1")
|
PASSTHROUGH_OPTS+=("$opt" "$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue