view deploy/src/archive-tip.sh @ 2563:bf0a885effb0 startup-timing

Add "Scanning plugins..." placeholder to transform menu
author Chris Cannam
date Tue, 16 Jun 2020 18:06:58 +0100
parents 7535f13569fa
children
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 export-tests repoint.pri

echo Done
echo