vpp/extras/snap/prep

12 lines
209 B
Plaintext
Raw Normal View History

#!/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