mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
Added simple script to generate a tarball
This commit is contained in:
parent
e55887f62b
commit
7e059aff9e
13
scripts/make-tarball.sh
Executable file
13
scripts/make-tarball.sh
Executable file
@ -0,0 +1,13 @@
|
||||
#!/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
|
Loading…
x
Reference in New Issue
Block a user