Attempting to build in:/Library/Application Support/xonotic/modpack
Running OSX 10.10.5
vrakbook:modpack vrak$ ./build.sh
readlink: illegal option -- f
usage: readlink [-n] [file ...]
./build.sh: line 20: cd: /Library/Application: No such file or directory
line 20 of build.sh is: b=; s=$(cd $(readlink -f ${1%%/}); pwd); d=$(cd $2; pwd)
pwd outputs /Library/Application Support/xonotic/modpack so the remainder of the path is ignored.
I used cd /Library/Application\ Support/xonotic/modpack to enter the directory, so that would be the correct path (that's how you cd into it), however I'm not sure how to edit build.sh to solve this. pwd does not output the \ that's needed where a path contains a space.
Attempting to build in:/Library/Application Support/xonotic/modpack
Running OSX 10.10.5
line 20 of build.sh is:
b=; s=$(cd $(readlink -f ${1%%/}); pwd); d=$(cd $2; pwd)pwdoutputs/Library/Application Support/xonotic/modpackso the remainder of the path is ignored.I used
cd /Library/Application\ Support/xonotic/modpackto enter the directory, so that would be the correct path (that's how you cd into it), however I'm not sure how to edit build.sh to solve this.pwddoes not output the\that's needed where a path contains a space.