From 4745efea9b2308b1fba8a8180a1a0b5da2986794 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Thu, 15 Mar 2012 13:58:51 -0700 Subject: [PATCH] fix make release target --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index bd8766981..b603b8cb7 100644 --- a/Makefile +++ b/Makefile @@ -426,13 +426,13 @@ release: git pull # Tag the release - git tag ${TAG} + git tag -f ${TAG} #cd /home/ivan - git archive ${TAG} | gzip -9 >freeside-${VERSION}.tar.gz + git archive --prefix=freeside-${VERSION}/ ${TAG} | gzip -9 >freeside-${VERSION}.tar.gz scp freeside-${VERSION}.tar.gz ivan@420.am:/var/www/www.sisd.com/freeside/ - mv freeside-${VERSION} freeside-${VERSION}.tar.gz .. + mv freeside-${VERSION}.tar.gz .. #these things failing should not make release target fail, so: "|| true" -- 2.11.0