aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
diff options
context:
space:
mode:
authorBlueWall2012-07-26 21:28:20 -0400
committerBlueWall2012-07-26 21:28:20 -0400
commitfaf250df2dfcf34552bb983cfc712a8164de3a3b (patch)
tree0b1d0eabcbeceec18f6f2af64862d61f1fddde50 /runprebuild.sh
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-faf250df2dfcf34552bb983cfc712a8164de3a3b.zip
opensim-SC_OLD-faf250df2dfcf34552bb983cfc712a8164de3a3b.tar.gz
opensim-SC_OLD-faf250df2dfcf34552bb983cfc712a8164de3a3b.tar.bz2
opensim-SC_OLD-faf250df2dfcf34552bb983cfc712a8164de3a3b.tar.xz
add clean task to reuprebuild.sh
./runprebuild.sh clean to clean up the project files
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-xrunprebuild.sh18
1 files changed, 16 insertions, 2 deletions
diff --git a/runprebuild.sh b/runprebuild.sh
index b3b5c9d..98bfcb3 100755
--- a/runprebuild.sh
+++ b/runprebuild.sh
@@ -1,4 +1,18 @@
1#!/bin/sh 1#!/bin/sh
2 2
3mono bin/Prebuild.exe /target nant 3case "$1" in
4mono bin/Prebuild.exe /target vs2008 4
5 'clean')
6
7 mono bin/Prebuild.exe /clean
8
9 ;;
10
11 *)
12
13 mono bin/Prebuild.exe /target nant
14 mono bin/Prebuild.exe /target vs2008
15 ;;
16
17esac
18