annotate deploy/src/archive-tip.sh @ 2049:fd4976627485

Fix inconsistency between centre frame actually set and centre frame notified as set, which caused the start frame location to creep out of place gradually as you page through
author Chris Cannam
date Tue, 30 Oct 2018 14:00:39 +0000
parents b578440bbca6
children 7535f13569fa
rev   line source
Chris@718 1 #!/bin/bash
Chris@718 2
Chris@1868 3 id=`hg id | awk '{ print $1; }'`
Chris@718 4
Chris@1868 5 case "$id" in
Chris@1868 6 *+) echo "ERROR: Current working copy has been modified - unmodified copy required"; exit 2;;
Chris@1868 7 *);;
Chris@1868 8 esac
Chris@718 9
Chris@1868 10 echo "Packaging from id $id..."
Chris@718 11
Chris@1868 12 hg update -r"$id"
Chris@1868 13
Chris@1869 14 ./repoint archive /tmp/sonic-visualiser-"$id".tar.gz --exclude sv-dependency-builds repoint.pri
Chris@1868 15
Chris@1868 16 echo Done
Chris@1868 17 echo
Chris@1868 18