aboutsummaryrefslogtreecommitdiffstats
path: root/extras/snap/prep
blob: 9e7e74bd9a789f2a122b9d88382f5e042dc0ea1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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