aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/make_tarball.sh
blob: 2e710174eb2ee0131b32350d97aa9097aef203d0 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

rm -f /tmp/fish_fish.tar /tmp/fish_fish.tar.gz
if git archive --format=tar fish_fish | gzip - > /tmp/fish_fish.tar
then
	echo "Tarball written to /tmp/fish_fish.tar.gz"
else
	echo "Tarball could not be written"
fi