From ee34c9d2e3af350e6f873fdc7245638e42617e96 Mon Sep 17 00:00:00 2001 From: Sayan Chowdhury Date: Wed, 17 Feb 2021 12:04:47 +0530 Subject: [PATCH] image_to_vm.sh: Explicity mention the jobs param in image_to_vm step Now, in the oem aci creation step we make use of the jobs param. Without this flag, an empty string is passed to to emerge which results in failure. Signed-off-by: Sayan Chowdhury --- image_to_vm.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/image_to_vm.sh b/image_to_vm.sh index 49319ea58b..d61c3515a4 100755 --- a/image_to_vm.sh +++ b/image_to_vm.sh @@ -44,6 +44,8 @@ DEFINE_boolean getbinpkg "${FLAGS_FALSE}" \ "Download binary packages from remote repository." DEFINE_string getbinpkgver "" \ "Use binary packages from a specific version." +DEFINE_integer jobs "${NUM_JOBS}" \ + "How many packages to build in parallel at maximum." # include upload options . "${BUILD_LIBRARY_DIR}/release_util.sh" || exit 1