Mercurial > hg > tony
view deploy/src/archive.sh @ 661:2dc25f20690f
Place source package in packages/
author | Chris Cannam |
---|---|
date | Fri, 25 Oct 2019 11:24:37 +0100 |
parents | 639deb9d6bd4 |
children | eb141af3866c |
line wrap: on
line source
#!/bin/bash set -eu tag=`hg tags | grep '^v' | head -1 | awk '{ print $1; }'` v=`echo "$tag" | sed 's/v//' | sed 's/_.*$//'` current=$(hg id | awk '{ print $1; }') case "$current" in *+) echo "ERROR: Current working copy has been modified - unmodified copy required so we can update to tag and back again safely"; exit 2;; *);; esac echo echo -n "Packaging up version $v from tag $tag... " hg update -r"$tag" ./repoint archive "$(pwd)"/packages/tony-"$v".tar.gz --exclude sv-dependency-builds repoint.pri testdata pyin/testdata hg update -r"$current" echo Done echo