From: david-sarah Date: Sun, 9 Jan 2011 06:58:51 +0000 (-0800) Subject: Makefile: Fix uploading of tarballs on trunk builds. X-Git-Tag: allmydata-tahoe-1.8.2b1~73 X-Git-Url: https://git.rkrishnan.org/architecture.txt?a=commitdiff_plain;h=3bd12327299541592c4155120b87554a78077c5c;p=tahoe-lafs%2Ftahoe-lafs.git Makefile: Fix uploading of tarballs on trunk builds. --- diff --git a/Makefile b/Makefile index f9ab46d7..809067cd 100644 --- a/Makefile +++ b/Makefile @@ -289,7 +289,7 @@ tarballs: $(PYTHON) setup.py sdist --sumo --formats=bztar,gztar,zip upload-tarballs: - @if [ "X${BB_BRANCH}" == "X" ]; then for f in dist/allmydata-tahoe-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi + @if [ "X${BB_BRANCH}" == "Xtrunk" ]; then for f in dist/allmydata-tahoe-*; do flappclient --furlfile ~/.tahoe-tarball-upload.furl upload-file $$f; done ; else echo not uploading tarballs because this is not trunk but is branch \"${BB_BRANCH}\" ; fi # DEBIAN PACKAGING