diff options
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 | ||