mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 06:05:39 +08:00
10 lines
249 B
Bash
Executable File
10 lines
249 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f ~/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
|
|
echo "Tarball could not be written"
|
|
fi
|