mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
14 lines
324 B
Bash
14 lines
324 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# A simple script to create a release tarball
|
||
|
#
|
||
|
# Tim Sutton, October 2011
|
||
|
|
||
|
TAG_OR_BRANCH="master"
|
||
|
VERSION="1.8.0-dev"
|
||
|
|
||
|
git archive --format=tar --prefix=qgis-${VERSION}/ ${TAG_OR_BRANCH=} | \
|
||
|
bzip2 > /tmp/qgis-${VERSION}.tar.bz2
|
||
|
md5sum /tmp/qgis-${VERSION}.tar.bz2 > \
|
||
|
/tmp/qgis-${VERSION}.tar.bz2.md5
|