mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-16 15:04:05 +00:00
10 lines
225 B
Bash
10 lines
225 B
Bash
|
#!/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
|