Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Tweaked nightly build so that only one compilation pass is needed
  • Loading branch information
Pierre-Luc Paour committed Dec 31, 2003
1 parent 9c71928 commit 195ded7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
5 changes: 4 additions & 1 deletion build.xml
Expand Up @@ -218,4 +218,7 @@

<postchangelog/>
</target>
</project>

<target name="nightly" depends="zip, installer_macosx"
description="Run all the tasks for a nightly build" />
</project>
11 changes: 4 additions & 7 deletions deploy.sh
@@ -1,18 +1,15 @@
cvs -q update -d;

. ant zip;
. ant nightly;

version=`grep version= defaults.properties | awk -F= '{print $2}'`;
echo $version;

cp gallery_remote.zip /home/httpd/htdocs/gr-staging/gallery_remote_${version}.zip

. ant installer_macosx

cp GalleryRemote.${version}.MacOSX.NoVM.tgz /home/httpd/htdocs/gr-staging
cp gallery_remote.zip /home/httpd/htdocs/gr-staging/gallery_remote_${version}.zip;
cp GalleryRemote.${version}.MacOSX.NoVM.tgz /home/httpd/htdocs/gr-staging;

lynx -dump -head http://jpmullan.com/galleryupdates/remote/gallery_remote_${version}.zip \
| grep "HTTP/1.1 404" && \
scp gallery_remote.zip paour@jpmullan.com:remote/gallery_remote_${version}.zip && \
scp GalleryRemote.${version}.MacOSX.NoVM.tgz paour@jpmullan.com:remote/ && \
. ant post
. ant post;

0 comments on commit 195ded7

Please sign in to comment.