mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-27 20:25:12 +00:00
Tweaked make_deb script
This commit is contained in:
parent
6f9a523151
commit
87c0e0e971
1 changed files with 5 additions and 1 deletions
|
@ -1,9 +1,13 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
rm -f /tmp/fish_fish_deb
|
# Terminate on error
|
||||||
|
set -e
|
||||||
|
|
||||||
|
rm -Rf /tmp/fish_fish_deb
|
||||||
mkdir /tmp/fish_fish_deb
|
mkdir /tmp/fish_fish_deb
|
||||||
git archive --format=tar fish_fish | tar -x -C /tmp/fish_fish_deb
|
git archive --format=tar fish_fish | tar -x -C /tmp/fish_fish_deb
|
||||||
cd /tmp/fish_fish_deb
|
cd /tmp/fish_fish_deb
|
||||||
|
autoconf
|
||||||
./configure
|
./configure
|
||||||
make
|
make
|
||||||
sudo checkinstall make install
|
sudo checkinstall make install
|
||||||
|
|
Loading…
Reference in a new issue