Updated make_tarball.sh to stop dumping files in the extract directory

This commit is contained in:
ridiculousfish 2012-05-30 01:06:25 -07:00
parent 4986e6e3f9
commit 51f9ff5389

View File

@ -1,7 +1,7 @@
#!/bin/sh
rm -f ~/fish_built/fishfish.tar.gz
if git archive --format=tar fish_fish | gzip - > ~/fish_built/fishfish.tar.gz
if git archive --format=tar --prefix=fishfish/ fish_fish | gzip - > ~/fish_built/fishfish.tar.gz
then
echo "Tarball written to ~/fish_built/fishfish.tar.gz"
else