Skip to content

Commit 83d2a71

Browse files
committed
Merge branch 'master' of github.com:timlinux/Quantum-GIS
2 parents 1a1f5eb + 8154103 commit 83d2a71

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

scripts/make-tarball.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/bin/bash
2+
3+
# A simple script to create a release tarball
4+
#
5+
# Tim Sutton, October 2011
6+
7+
TAG_OR_BRANCH="master"
8+
VERSION="1.8.0-dev"
9+
10+
git archive --format=tar --prefix=qgis-${VERSION}/ ${TAG_OR_BRANCH=} | \
11+
bzip2 > /tmp/qgis-${VERSION}.tar.bz2
12+
md5sum /tmp/qgis-${VERSION}.tar.bz2 > \
13+
/tmp/qgis-${VERSION}.tar.bz2.md5

0 commit comments

Comments
 (0)