summaryrefslogtreecommitdiffstats
path: root/build.sh
diff options
context:
space:
mode:
authorJonathan Bauer2011-06-24 16:06:30 +0200
committerJonathan Bauer2011-06-24 16:06:30 +0200
commitea78d18c21d3d5862cf7bae40fa7bf8f1e321438 (patch)
tree0c82552d8218de271ed01f76818898f0af74c928 /build.sh
parentstarted command line parsing.. (diff)
downloadfbsplash-ea78d18c21d3d5862cf7bae40fa7bf8f1e321438.tar.gz
fbsplash-ea78d18c21d3d5862cf7bae40fa7bf8f1e321438.tar.xz
fbsplash-ea78d18c21d3d5862cf7bae40fa7bf8f1e321438.zip
scripts changes
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index cda70f2..dacc56e 100755
--- a/build.sh
+++ b/build.sh
@@ -4,11 +4,10 @@ DIR=$(pwd)
BUILDDIR=build
# if --clean, remove build dir
-if [ "$1" = "--clean" ]
+if [ "$1" = "-c" ]
then
rm -rf $BUILDDIR
echo "$BUILDDIR removed."
- exit 1
fi
if [ ! -f CMakeLists.txt ]