We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c17f791 commit caa2146Copy full SHA for caa2146
scripts/make-tarball.sh
@@ -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