use path queries compatible with old fish

pull/603/head
Stephen M. Coakley 6 years ago
parent a845d19478
commit ce38c3d4e2
No known key found for this signature in database
GPG Key ID: 91B59C18494C4FC0

@ -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]:

@ -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)

@ -1 +1 @@
4dd63d6a974a61c100cbe145ae46eac69edce985f20b061f353cc399b36c7587 install
06844ca6876fac0ea949c8089d8c5f71e14b69d2bb1dc41f1d0677250a1c62e1 install

Loading…
Cancel
Save