blob: caabd85ccd68375e1451697b193bf7150863af61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
set -eu
cd ../../build-root
echo "make distclean..."
make distclean > /dev/null 2>&1
cd ../
echo "construct source tarball..."
tar -zcf extras/snap/vpp.tgz --exclude=extras/snap/vpp.tgz .
exit 0
|