blob: caabd85ccd68375e1451697b193bf7150863af61 [file] [log] [blame]
Dave Barach6d97e622020-03-18 10:14:40 -04001#!/bin/bash
2
3set -eu
4
5cd ../../build-root
6echo "make distclean..."
7make distclean > /dev/null 2>&1
8cd ../
9echo "construct source tarball..."
10tar -zcf extras/snap/vpp.tgz --exclude=extras/snap/vpp.tgz .
11exit 0