aboutsummaryrefslogtreecommitdiffhomepage
path: root/build_tools/make_tarball.sh
blob: bd81423fecc6ca13cb7e53e1d2a1050ab2a9b4cf (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/fishfish.tar.gz
then
	echo "Tarball written to /tmp/fishfish.tar.gz"
else
	echo "Tarball could not be written"
fi