Skip to content

Commit

Permalink
Added simple script to generate a tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux authored and mach0 committed Nov 13, 2011
1 parent c17f791 commit caa2146
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/make-tarball.sh
@@ -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

0 comments on commit caa2146

Please sign in to comment.