diff options
author | Dan Fedele <dan.fedele@gmail.com> | 2022-11-07 11:33:52 -0500 |
---|---|---|
committer | Dan Fedele <dan.fedele@gmail.com> | 2022-11-07 11:33:52 -0500 |
commit | 27dc9030e0de0c6622ae3f2cde189988d4a8464a (patch) | |
tree | 78cc85e218e6367259aa0a1dd7032e9a68a31e7c | |
parent | c059e2bf4d0050f7e08b38944c1065c2fde4d278 (diff) |
Bugfixes
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | setup.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -20,7 +20,7 @@ Many of the changes here came as a result of this repository being included as a ## Caveat Emptor -Through exhaustive testing and re-testing, we have determined that this will install approximately XX Gigabytes of data onto your Kali machine. It is advised that you have at least YY Gigabytes free before running this installer! +Through exhaustive testing and re-testing, we have determined that this will install approximately 13 Gigabytes of data onto your Kali machine. It is advised that you have at least 15 Gigabytes free before running this installer! Despite all of our efforts, no one has been able to get this script to work on Apple's M1 architecture. This is for AMD64 only. Sorry! @@ -5,7 +5,7 @@ set -eu # Are we running in bash? # Single bracket to be posix compliant in case we run in sh or something -if [ ! -z ${BASH} ]; then +if [ -z ${BASH} ]; then echo "This script must be run from the Bash shell!" exit 1 fi |