Remove root build directory when cleaning up previous builds using cmake-build.sh.
This commit is contained in:
parent
99813ad252
commit
81184bf2ae
|
@ -16,7 +16,7 @@ do
|
||||||
mkdir build
|
mkdir build
|
||||||
(cd build && cmake .. && cmake --build .)
|
(cd build && cmake .. && cmake --build .)
|
||||||
elif [ $bChoice -eq 2 ] ; then # Cleanup build
|
elif [ $bChoice -eq 2 ] ; then # Cleanup build
|
||||||
rm -Rv build/*
|
rm -Rv build/
|
||||||
elif [ $bChoice -eq 0 ] ; then # Exit script
|
elif [ $bChoice -eq 0 ] ; then # Exit script
|
||||||
break
|
break
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue