mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Remove exit 0
from initialization code of fish
This commit is contained in:
parent
0468ffdd49
commit
6f761f8159
1 changed files with 2 additions and 1 deletions
|
@ -140,7 +140,6 @@ function pyenv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
EOS
|
EOS
|
||||||
exit 0
|
|
||||||
;;
|
;;
|
||||||
ksh )
|
ksh )
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
|
@ -156,6 +155,7 @@ EOS
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
if [ "$shell" != "fish" ]; then
|
||||||
IFS="|"
|
IFS="|"
|
||||||
cat <<EOS
|
cat <<EOS
|
||||||
command="\$1"
|
command="\$1"
|
||||||
|
@ -171,3 +171,4 @@ cat <<EOS
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
EOS
|
EOS
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue