From e21e6c71a0d5639581335132be5acaa0be0bef50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Tue, 3 Mar 2015 11:35:13 +0100 Subject: [PATCH] Fix installation path --- build.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 419a9a2..8f56784 100755 --- a/build.sh +++ b/build.sh @@ -35,6 +35,11 @@ target_image_name() { echo "$TARGET_SUBDIR/kali-linux-$KALI_VERSION-$KALI_ARCH.$IMAGE_EXT" } +target_build_log() { + TARGET_IMAGE_NAME=$(target_image_name $1) + echo ${TARGET_IMAGE_NAME%.*}.log +} + failure() { echo "Build of $KALI_DIST/$KALI_ARCH live image failed" >&2 if [ -n "$VERBOSE" ]; then @@ -160,6 +165,6 @@ for KALI_ARCH in $KALI_ARCHES; do failure fi set -e - mv -f $IMAGE_NAME $(target_image_name $KALI_ARCH) - mv -f build.log $TARGET_DIR/$TARGET_SUBDIR/kali-linux-$KALI_VERSION-$KALI_ARCH.log + mv -f $IMAGE_NAME $TARGET_DIR/$(target_image_name $KALI_ARCH) + mv -f build.log $TARGET_DIR/$(target_build_log $KALI_ARCH) done