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
112fb3db
Commit
112fb3db
authored
Mar 31, 2018
by
Stephen M. Coakley
Committed by
GitHub
Mar 31, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #603 from oh-my-fish/fix/installer-old-fish-messages
use path queries compatible with old fish
parents
a845d194
ce38c3d4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
README.md
README.md
+1
-1
bin/install
bin/install
+3
-3
bin/install.sha256
bin/install.sha256
+1
-1
No files found.
README.md
View file @
112fb3db
...
...
@@ -34,7 +34,7 @@ fish install --path=~/.local/share/omf --config=~/.config/omf
You can verify the integrity of the downloaded installer by verifying the script against
[
this checksum
](
bin/install.sha256
)
:
```
4dd63d6a974a61c100cbe145ae46eac69edce985f20b061f353cc399b36c7587
install
06844ca6876fac0ea949c8089d8c5f71e14b69d2bb1dc41f1d0677250a1c62e1
install
```
You can also install Oh My Fish with Git or with an offline source tarball downloaded from the
[
releases page
][
releases
]
:
...
...
bin/install
View file @
112fb3db
...
...
@@ -501,7 +501,7 @@ end
# Gets the version of Git installed.
function get_git_version
type -f
-q git
type -f
git > /dev/null ^ /dev/null
and command git --version | command cut -d' ' -f3
end
...
...
@@ -561,7 +561,7 @@ function assert_cmds
set -l cmds awk basename cp cut date dirname env fish fold head mkdir mv readlink rm sed sort tar tr which
for cmd in $cmds
type -f
-q $cmd
type -f
$cmd > /dev/null ^ /dev/null
or abort "Missing required command: $cmd"
debug "Command '$cmd' is "(which $cmd)
...
...
@@ -582,7 +582,7 @@ end
# A link-following `which` wrapper.
function which
if type
-q realpath
if type
realpath > /dev/null ^ /dev/null
realpath (command which $argv)
else
command readlink (command which $argv)
...
...
bin/install.sha256
View file @
112fb3db
4dd63d6a974a61c100cbe145ae46eac69edce985f20b061f353cc399b36c7587
install
06844ca6876fac0ea949c8089d8c5f71e14b69d2bb1dc41f1d0677250a1c62e1
install
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