Inspect $FISH_VERSION variable instead of $version

This commit is contained in:
Luís Fiolhais 2016-06-01 22:14:01 +01:00
parent 77ac6fa261
commit 780c833cb4

View File

@ -54,8 +54,9 @@ function report -a what message
end end
function fish_version_compatible function fish_version_compatible
set -l major (echo $version | cut -d. -f1) set -q FISH_VERSION; or set -l FISH_VERSION $version
set -l minor (echo $version | cut -d. -f2) set -l major (echo $FISH_VERSION | cut -d. -f1)
set -l minor (echo $FISH_VERSION | cut -d. -f2)
return (test $major = $OMF_FISH_MIN_VER[1] -a $minor -ge $OMF_FISH_MIN_VER[2]) return (test $major = $OMF_FISH_MIN_VER[1] -a $minor -ge $OMF_FISH_MIN_VER[2])
end end