Add shorthand support for arch

merge-requests/16/head
Ben Wilson 4 years ago
parent 0bf7ea3728
commit c78ef580bc

@ -153,6 +153,11 @@ done
# Set default values
KALI_ARCH=${KALI_ARCH:-$HOST_ARCH}
if [ "$KALI_ARCH" == "x64" ]; then
KALI_ARCH="amd64"
elif [ "$KALI_ARCH" == "x86" ]; then
KALI_ARCH="i386"
fi
debug "KALI_ARCH: $KALI_ARCH"
if [ -z "$KALI_VERSION" ]; then

Loading…
Cancel
Save