mirror of
https://github.com/flatcar/scripts.git
synced 2025-11-22 11:01:33 +01:00
build_*_aci: Add missing jobs parameter
They end up using emerge_to_image which needs uses the `$FLAGS_jobs` parameter. Seems like new portage does not like getting the parameter like `--jobs=` (with an empty value).
This commit is contained in:
parent
91a85ddc86
commit
1084f961fd
@ -54,6 +54,8 @@ DEFINE_string version "" \
|
|||||||
"Sets the docker version to build."
|
"Sets the docker version to build."
|
||||||
DEFINE_integer aci_version "" \
|
DEFINE_integer aci_version "" \
|
||||||
"Sets the aci version tag identifier."
|
"Sets the aci version tag identifier."
|
||||||
|
DEFINE_integer jobs "${NUM_JOBS}" \
|
||||||
|
"How many packages to build in parallel at maximum."
|
||||||
|
|
||||||
# Parse command line.
|
# Parse command line.
|
||||||
FLAGS "$@" || exit 1
|
FLAGS "$@" || exit 1
|
||||||
|
|||||||
@ -46,6 +46,8 @@ DEFINE_string output_root "${DEFAULT_BUILD_ROOT}/images" \
|
|||||||
"Directory in which to place image result directories (named by version)"
|
"Directory in which to place image result directories (named by version)"
|
||||||
DEFINE_string version "" \
|
DEFINE_string version "" \
|
||||||
"Overrides version number in name to this version."
|
"Overrides version number in name to this version."
|
||||||
|
DEFINE_integer jobs "${NUM_JOBS}" \
|
||||||
|
"How many packages to build in parallel at maximum."
|
||||||
|
|
||||||
# Parse command line.
|
# Parse command line.
|
||||||
FLAGS "$@" || exit 1
|
FLAGS "$@" || exit 1
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user