Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
a7d63766
Commit
a7d63766
authored
Sep 15, 2015
by
jeremiejig
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
install_fish: Use strip on binary fish...
Cache from 7.51MB to 1.63MB
parent
250fe263
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
tests/install_fish.sh
tests/install_fish.sh
+3
-1
No files found.
tests/install_fish.sh
View file @
a7d63766
#!/bin/sh
#!/bin/sh
set
-e
set
-e
BINDIR
=
$HOME
/fish/bin
# check to see if fish bin doesn't exist
# check to see if fish bin doesn't exist
if
[
!
-x
"
$
HOME
/fish/bin
/fish"
]
;
then
if
[
!
-x
"
$
BINDIR
/fish"
]
;
then
cd
/tmp
cd
/tmp
wget
-O
- https://github.com/fish-shell/fish-shell/releases/download/2.2.0/fish-2.2.0.tar.gz |
tar
xzv
wget
-O
- https://github.com/fish-shell/fish-shell/releases/download/2.2.0/fish-2.2.0.tar.gz |
tar
xzv
cd
fish-2.2.0
&&
./configure
--prefix
=
$HOME
/fish
&&
make
-j2
&&
make
install
;
cd
fish-2.2.0
&&
./configure
--prefix
=
$HOME
/fish
&&
make
-j2
&&
make
install
;
strip
$BINDIR
/fish
$BINDIR
/fish_indent
$BINDIR
/mimedb
else
else
echo
'Using cached directory.'
;
echo
'Using cached directory.'
;
fi
fi
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment