annotate archive.sh @ 175:aa57e80b6af8
Adopt C++11 mode: we don't actually use its features, but for vector manipulation it can be faster
author |
Chris Cannam <c.cannam@qmul.ac.uk> |
date |
Tue, 28 Apr 2015 11:08:11 +0100 |
parents |
83cd46303dee |
children |
|
rev |
line source |
c@167
|
1 #!/bin/bash
|
c@167
|
2 tag=$(hg tags | grep -v ^tip | head -1 | awk '{ print $1 }')
|
c@167
|
3 out="/tmp/cq-$tag.tar.bz2"
|
c@167
|
4 echo "Archiving from tag $tag to file $out"
|
c@167
|
5 if [ -z "$tag" ]; then
|
c@167
|
6 echo "ERROR: No tag found!"
|
c@167
|
7 exit 1
|
c@167
|
8 fi
|
c@167
|
9 hg archive -r"$tag" -S --exclude misc "$out"
|