aboutsummaryrefslogtreecommitdiffstats
path: root/make-release-archive.sh
blob: 27f61b1fdcbc3aeb82f3d52b456134c5dd483e7c (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

test $# -eq 1 || { echo "Error: Tag required." >&2; exit 1; }

tag=${1}
version=${tag#v}

git archive --format=tar.gz --prefix=qbs-${version}/ -o qbs-${version}.src.tar.gz ${tag}