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

path=~/fish_built/fishfish-2.0.tar.gz
rm -f "$path"
if git archive --format=tar --prefix=fishfish/ master | gzip - > "$path"
then
	echo "Tarball written to $path"
	openssl sha1 "$path"
else
	echo "Tarball could not be written"
fi