Skip to content

Commit caa2146

Browse files
timlinuxmach0
authored andcommitted
Added simple script to generate a tarball
1 parent c17f791 commit caa2146

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

scripts/make-tarball.sh

+13
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)