From 36bafa26b47876cb7be5241d0ea164872166b615 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Hertzog?= Date: Thu, 13 Feb 2020 15:35:11 +0100 Subject: [PATCH] Fix path of installer image for non-default non-netinst images --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 1157190..f21863e 100755 --- a/build.sh +++ b/build.sh @@ -37,10 +37,10 @@ live_image_name() { } installer_image_name() { - if [ "$KALI_VARIANT" = "default" ]; then - echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-DVD-1.iso" - else + if [ "$KALI_VARIANT" = "netinst" ]; then echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-NETINST-1.iso" + else + echo "simple-cdd/images/kali-$KALI_VERSION-$KALI_ARCH-DVD-1.iso" fi }