diff options
author | onefang | 2019-09-11 16:36:50 +1000 |
---|---|---|
committer | onefang | 2019-09-11 16:36:50 +1000 |
commit | 50cd1ffd32f69228e566f2b0b89f86ea0d9fe489 (patch) | |
tree | 52f2ab0c04f1a5d7d6ac5dc872981b4b156447e7 /runprebuild.sh | |
parent | Renamed branch to SledjChisl. (diff) | |
parent | Bump to release flavour, build 0. (diff) | |
download | opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.zip opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.gz opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.bz2 opensim-SC-50cd1ffd32f69228e566f2b0b89f86ea0d9fe489.tar.xz |
Merge branch 'SledjChisl'
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-x | runprebuild.sh | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/runprebuild.sh b/runprebuild.sh index 8c18db6..a6d312f 100755 --- a/runprebuild.sh +++ b/runprebuild.sh | |||
@@ -3,30 +3,29 @@ | |||
3 | case "$1" in | 3 | case "$1" in |
4 | 4 | ||
5 | 'clean') | 5 | 'clean') |
6 | |||
7 | mono bin/Prebuild.exe /clean | 6 | mono bin/Prebuild.exe /clean |
8 | |||
9 | ;; | 7 | ;; |
10 | 8 | ||
11 | |||
12 | 'autoclean') | 9 | 'autoclean') |
13 | |||
14 | echo y|mono bin/Prebuild.exe /clean | 10 | echo y|mono bin/Prebuild.exe /clean |
11 | ;; | ||
15 | 12 | ||
13 | 'mono') | ||
14 | mono bin/Prebuild.exe /target monodev | ||
16 | ;; | 15 | ;; |
17 | 16 | ||
17 | 'nant') | ||
18 | mono bin/Prebuild.exe /target nant | ||
19 | ;; | ||
18 | 20 | ||
19 | 'vs2010') | 21 | 'vs2010') |
20 | |||
21 | mono bin/Prebuild.exe /target vs2010 | 22 | mono bin/Prebuild.exe /target vs2010 |
22 | |||
23 | ;; | 23 | ;; |
24 | 24 | ||
25 | *) | 25 | *) |
26 | 26 | mono bin/Prebuild.exe /target monodev | |
27 | mono bin/Prebuild.exe /target nant | 27 | mono bin/Prebuild.exe /target nant |
28 | mono bin/Prebuild.exe /target vs2010 | 28 | mono bin/Prebuild.exe /target vs2010 |
29 | |||
30 | ;; | 29 | ;; |
31 | 30 | ||
32 | esac | 31 | esac |