summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files 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"