We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 139a337 commit 206ffc3Copy full SHA for 206ffc3
1 file changed
scripts/linux/compileOF.sh
@@ -10,7 +10,7 @@ else
10
fi
11
12
pushd `dirname $0` > /dev/null
13
-SCRIPTPATH=`pwd`
+SCRIPTPATH="$(pwd)"
14
popd > /dev/null
15
16
BUILD="install"
@@ -24,7 +24,7 @@ while getopts tj: opt ; do
24
esac
25
done
26
27
-cd ${SCRIPTPATH}/../../libs/openFrameworksCompiled/project
+cd "${SCRIPTPATH}/../../libs/openFrameworksCompiled/project"
28
make -j$JOBS Debug
29
exit_code=$?
30
if [ $exit_code != 0 ]; then
0 commit comments