fish-shell/build_tools/make_tarball.sh

10 lines
249 B
Bash
Raw Normal View History

#!/bin/sh
2012-05-25 14:56:07 +08:00
rm -f ~/fish_built/fishfish.tar.gz
if git archive --format=tar --prefix=fishfish/ fish_fish | gzip - > ~/fish_built/fishfish.tar.gz
then
2012-05-25 14:56:07 +08:00
echo "Tarball written to ~/fish_built/fishfish.tar.gz"
else
echo "Tarball could not be written"
fi