Skip to content

Commit 206ffc3

Browse files
authored
Linux - spaces in paths (#7718)
1 parent 139a337 commit 206ffc3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/linux/compileOF.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ else
1010
fi
1111

1212
pushd `dirname $0` > /dev/null
13-
SCRIPTPATH=`pwd`
13+
SCRIPTPATH="$(pwd)"
1414
popd > /dev/null
1515

1616
BUILD="install"
@@ -24,7 +24,7 @@ while getopts tj: opt ; do
2424
esac
2525
done
2626

27-
cd ${SCRIPTPATH}/../../libs/openFrameworksCompiled/project
27+
cd "${SCRIPTPATH}/../../libs/openFrameworksCompiled/project"
2828
make -j$JOBS Debug
2929
exit_code=$?
3030
if [ $exit_code != 0 ]; then

0 commit comments

Comments
 (0)