Remove root build directory when cleaning up previous builds using cmake-build.sh.

This commit is contained in:
Shaun Reed 2019-08-18 07:20:26 +00:00
parent 99813ad252
commit 81184bf2ae
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ do
mkdir build
(cd build && cmake .. && cmake --build .)
elif [ $bChoice -eq 2 ] ; then # Cleanup build
rm -Rv build/*
rm -Rv build/
elif [ $bChoice -eq 0 ] ; then # Exit script
break
else