mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
9 lines
230 B
Bash
Executable file
9 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
|
|
rm -f ~/fish_built/fishfish.tar.gz
|
|
if git archive --format=tar fish_fish | gzip - > ~/fish_built/fishfish.tar.gz
|
|
then
|
|
echo "Tarball written to ~/fish_built/fishfish.tar.gz"
|
|
else
|
|
echo "Tarball could not be written"
|
|
fi
|