From 91633bac8c79433fd7b490aec814b9360b123d21 Mon Sep 17 00:00:00 2001 From: Jussi Hagman Date: Mon, 13 Jan 2020 16:06:57 +0200 Subject: [PATCH] Do not access root ( / ) --- setup_osx.command | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup_osx.command b/setup_osx.command index f7b38d763..8b1d6303b 100755 --- a/setup_osx.command +++ b/setup_osx.command @@ -12,7 +12,7 @@ echo "" find . -name "*.command" -exec chmod +x {} \; find . -type f -iname "*.a" -exec rm -f {} \; find . -type f -iname "*.o" -exec rm -f {} \; -rm /internal/temp/* +rm ./internal/temp/* if [ -z "$(which g++)" ]; then echo "GNU C++ compiler not detected (g++)"