upped Bash version requirement to 4.3

upped Bash version requirement to 4.3 due to buggy associative array implementation (see [issue 147](https://github.com/myspaghetti/macos-guest-virtualbox/issues/147))
This commit is contained in:
Jack
2020-01-13 23:36:14 +02:00
committed by GitHub
parent 52608614e8
commit 68c9fb7f76
+6 -3
View File
@@ -2,10 +2,10 @@
# Semi-automatic installer of macOS on VirtualBox # Semi-automatic installer of macOS on VirtualBox
# (c) myspaghetti, licensed under GPL2.0 or higher # (c) myspaghetti, licensed under GPL2.0 or higher
# url: https://github.com/myspaghetti/macos-guest-virtualbox # url: https://github.com/myspaghetti/macos-guest-virtualbox
# version 0.78.0 # version 0.78.1
# Requirements: 40GB available storage on host # Requirements: 40GB available storage on host
# Dependencies: bash >= 4.0, unzip, wget, dmg2img, # Dependencies: bash >= 4.3, unzip, wget, dmg2img,
# VirtualBox with Extension Pack >= 6.0 # VirtualBox with Extension Pack >= 6.0
function set_variables() { function set_variables() {
@@ -124,12 +124,15 @@ if [ -z "${BASH_VERSION}" ]; then
echo "Can't determine BASH_VERSION. Exiting." echo "Can't determine BASH_VERSION. Exiting."
exit exit
elif [ "${BASH_VERSION:0:1}" -lt 4 ]; then elif [ "${BASH_VERSION:0:1}" -lt 4 ]; then
echo "Please run this script on Bash 4.0 or higher." echo "Please run this script on Bash 4.3 or higher."
if [ -n "$(sw_vers 2>/dev/null)" ]; then if [ -n "$(sw_vers 2>/dev/null)" ]; then
echo "macOS detected. Make sure the script is not running on" echo "macOS detected. Make sure the script is not running on"
echo "the default /bin/bash which is version 3." echo "the default /bin/bash which is version 3."
fi fi
exit exit
elif [ "${BASH_VERSION:0:1}" -eq 4 -a "${BASH_VERSION:2:1}" -le 2 ]; then
echo "Please run this script on Bash 4.3 or higher."
exit
fi fi
} }