mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-17 09:02:45 +08:00
10 lines
226 B
Bash
Executable File
10 lines
226 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/fishfish.tar.gz
|
|
then
|
|
echo "Tarball written to /tmp/fishfish.tar.gz"
|
|
else
|
|
echo "Tarball could not be written"
|
|
fi
|