diff options
author | Adam Frisby | 2008-04-30 23:03:54 +0000 |
---|---|---|
committer | Adam Frisby | 2008-04-30 23:03:54 +0000 |
commit | b67cf72bc3978fa443dbde52da64491df20adf97 (patch) | |
tree | 32f3afdda620dc01cae0b8578817fccc0faa6b9d /.nant/bamboo.build | |
parent | * Fix attempt #2. (diff) | |
download | opensim-SC_OLD-b67cf72bc3978fa443dbde52da64491df20adf97.zip opensim-SC_OLD-b67cf72bc3978fa443dbde52da64491df20adf97.tar.gz opensim-SC_OLD-b67cf72bc3978fa443dbde52da64491df20adf97.tar.bz2 opensim-SC_OLD-b67cf72bc3978fa443dbde52da64491df20adf97.tar.xz |
* Fix #3
Diffstat (limited to '')
-rw-r--r-- | .nant/bamboo.build | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build index 431abf7..216c3e4 100644 --- a/.nant/bamboo.build +++ b/.nant/bamboo.build | |||
@@ -22,13 +22,13 @@ | |||
22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> | 22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> |
23 | 23 | ||
24 | <zip zipfile="../${projectdir}.zip"> | 24 | <zip zipfile="../${projectdir}.zip"> |
25 | <fileset basedir="../"> | 25 | <fileset basedir="${projectdir}/"> |
26 | <include name="${projectdir}/**/*" /> | 26 | <include name="**" /> |
27 | </fileset> | 27 | </fileset> |
28 | </zip> | 28 | </zip> |
29 | <tar destfile="../${projectdir}.tar.gz" compression="GZip"> | 29 | <tar destfile="../${projectdir}.tar.gz" compression="GZip"> |
30 | <fileset basedir="../"> | 30 | <fileset basedir="${projectdir}/"> |
31 | <include name="${projectdir}/**/*" /> | 31 | <include name="**" /> |
32 | </fileset> | 32 | </fileset> |
33 | </tar> | 33 | </tar> |
34 | 34 | ||