view deploy/src/archive-tip.sh @ 2171:a38d6f0f1d06

Fix crash when closing application or invoking New Session while recording is in progress
author Chris Cannam
date Fri, 04 Jan 2019 15:24:46 +0000
parents b578440bbca6
children 7535f13569fa
line wrap: on
line source
#!/bin/bash

id=`hg id | awk '{ print $1; }'`

case "$id" in
    *+) echo "ERROR: Current working copy has been modified - unmodified copy required"; exit 2;;
    *);;
esac

echo "Packaging from id $id..."

hg update -r"$id"

./repoint archive /tmp/sonic-visualiser-"$id".tar.gz --exclude sv-dependency-builds repoint.pri

echo Done
echo