mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
Updated some build scripts
This commit is contained in:
parent
87c0e0e971
commit
dcd7d6769d
2 changed files with 5 additions and 5 deletions
|
@ -5,9 +5,9 @@ mkdir -p /tmp/fish_pkg/
|
|||
if make install prefix=/tmp/fish_pkg/usr/local/
|
||||
then
|
||||
echo "Root written to /tmp/fish_pkg/"
|
||||
if /Developer/usr/bin/packagemaker --doc ./build_tools/fish_shell.pmdoc --out ~/fishfish.pkg
|
||||
if /Developer/usr/bin/packagemaker --doc ./build_tools/fish_shell.pmdoc --out ~/fish_built/fishfish.pkg
|
||||
then
|
||||
echo "Package written to ~/fishfish.pkg"
|
||||
echo "Package written to ~/fish_built/fishfish.pkg"
|
||||
else
|
||||
echo "Package could not be written"
|
||||
fi
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
#!/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
|
||||
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 /tmp/fishfish.tar.gz"
|
||||
echo "Tarball written to ~/fish_built/fishfish.tar.gz"
|
||||
else
|
||||
echo "Tarball could not be written"
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue