annotate deploy/src/archive-tip.sh @ 2594:2de306979a2a sv_v4.2

Minor updates to debug and other wording for 4.2; fix failure to show plugin population warning dialog
author Chris Cannam
date Fri, 14 Aug 2020 10:48:29 +0100
parents 7535f13569fa
children
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@2558 14 ./repoint archive /tmp/sonic-visualiser-"$id".tar.gz --exclude sv-dependency-builds export-tests repoint.pri
Chris@1868 15
Chris@1868 16 echo Done
Chris@1868 17 echo
Chris@1868 18