mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-27 19:53:36 +08:00
10 lines
225 B
Bash
Executable File
10 lines
225 B
Bash
Executable File
#!/bin/sh
|
|
|
|
rm -f /tmp/fish_fish.tar /tmp/fish_fish.tar.gz
|
|
if git archive --format=tar fish_fish | gzip - > /tmp/fish_fish.tar
|
|
then
|
|
echo "Tarball written to /tmp/fish_fish.tar.gz"
|
|
else
|
|
echo "Tarball could not be written"
|
|
fi
|