From c5d7d55303aa946bc8b09427a87d2d72ec590872 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Thu, 26 Feb 2015 15:47:45 +0100 Subject: [PATCH] Make it possible to pass live-build config options on the command line --- auto/config | 3 +++ build.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/auto/config b/auto/config index 962e2ab..a66be91 100755 --- a/auto/config +++ b/auto/config @@ -35,6 +35,9 @@ while [ $# -gt 0 ]; do dist="kali-rolling" lb_opts="--initsystem systemd" ;; + --) + shift + ;; *) temp="$temp "'"'"$arg"'"' ;; diff --git a/build.sh b/build.sh index 51c7154..203b6ce 100755 --- a/build.sh +++ b/build.sh @@ -136,7 +136,7 @@ for KALI_ARCH in $KALI_ARCHES; do : > build.log run_and_log $SUDO lb clean --purge [ $? -eq 0 ] || failure - run_and_log lb config -a $KALI_ARCH $KALI_CONFIG_OPTS + run_and_log lb config -a $KALI_ARCH $KALI_CONFIG_OPTS "$@" [ $? -eq 0 ] || failure run_and_log $SUDO lb build if [ $? -ne 0 ] || [ ! -e $IMAGE_NAME ]; then