From faf250df2dfcf34552bb983cfc712a8164de3a3b Mon Sep 17 00:00:00 2001 From: BlueWall Date: Thu, 26 Jul 2012 21:28:20 -0400 Subject: add clean task to reuprebuild.sh ./runprebuild.sh clean to clean up the project files --- runprebuild.sh | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'runprebuild.sh') diff --git a/runprebuild.sh b/runprebuild.sh index b3b5c9d..98bfcb3 100755 --- a/runprebuild.sh +++ b/runprebuild.sh @@ -1,4 +1,18 @@ #!/bin/sh -mono bin/Prebuild.exe /target nant -mono bin/Prebuild.exe /target vs2008 +case "$1" in + + 'clean') + + mono bin/Prebuild.exe /clean + + ;; + + *) + + mono bin/Prebuild.exe /target nant + mono bin/Prebuild.exe /target vs2008 + ;; + +esac + -- cgit v1.1