From fd1195d15ec5c64119da9f06c594923a8c9d3eff Mon Sep 17 00:00:00 2001 From: Oliver Voelker Date: Wed, 12 Nov 2014 22:49:28 +0100 Subject: [PATCH] buildscript can also "clean" up --- buildscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/buildscript b/buildscript index 94d1884..5be862f 100755 --- a/buildscript +++ b/buildscript @@ -307,7 +307,7 @@ case "$1" in "clean") if [ "$2" = "help" ] || [ "$2" = "x" ]; then echo "This option cleans all build files." - echo "$0 $1 all" + echo "$0 $1" else clean fi @@ -332,6 +332,7 @@ case "$1" in echo " config" echo " build" echo " buildall" + echo " clean" echo "" echo "If you need help to one of these options just type $0 command help" ;;