The script fails in line: 266.
The script tries to enter the directory: casablanca/Binaries/Release$BITNESS/
The directory does not exist when cloning the repository, and it should be created, so I added the following line to the script to fix this in line 266:
mkdir -p casablanca/Binaries/Release$BITNESS/ || exit 99
The script fails in line: 266. The script tries to enter the directory: casablanca/Binaries/Release$BITNESS/ The directory does not exist when cloning the repository, and it should be created, so I added the following line to the script to fix this in line 266: mkdir -p casablanca/Binaries/Release$BITNESS/ || exit 99
Is this a bug or did I miss something?