diff options
author | BlueWall | 2012-07-26 21:28:20 -0400 |
---|---|---|
committer | BlueWall | 2012-07-26 21:28:20 -0400 |
commit | faf250df2dfcf34552bb983cfc712a8164de3a3b (patch) | |
tree | 0b1d0eabcbeceec18f6f2af64862d61f1fddde50 | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-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
-rwxr-xr-x | runprebuild.sh | 18 |
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 | ||
3 | mono bin/Prebuild.exe /target nant | 3 | case "$1" in |
4 | mono 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 | |||
17 | esac | ||
18 | |||