832a316526
Clean up snapcraft.yaml bit rot, switch to Ubuntu 20.04, add README.md Type: improvement Signed-off-by: Dave Barach <dave@barachs.net> Change-Id: I2e0d3925cf43541e70b59083f8c91af539aa34e6
14 lines
276 B
Bash
Executable File
14 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
cd ../../build-root
|
|
echo "make distclean..."
|
|
make distclean > /dev/null 2>&1
|
|
# make sure we don't trip over a symbolic link later
|
|
rm -f .ccache
|
|
cd ../
|
|
echo "construct source tarball..."
|
|
tar -zcf extras/snap/vpp.tgz --exclude=extras/snap/vpp.tgz .
|
|
exit 0
|