Merge pull request #615 from cha-ron/fish-depcrecated-period

"." has been deprecated in the fish shell in favor of explicit "source"
This commit is contained in:
Yamashita, Yuu 2016-05-30 09:10:36 +09:00
commit 03f8029c41
2 changed files with 2 additions and 2 deletions

View file

@ -70,7 +70,7 @@ if [ -z "$print" ]; then
echo
case "$shell" in
fish )
echo 'status --is-interactive; and . (pyenv init -|psub)'
echo 'status --is-interactive; and source (pyenv init -|psub)'
;;
* )
echo 'eval "$(pyenv init -)"'

View file

@ -53,7 +53,7 @@ OUT
@test "fish instructions" {
run pyenv-init fish
assert [ "$status" -eq 1 ]
assert_line 'status --is-interactive; and . (pyenv init -|psub)'
assert_line 'status --is-interactive; and source (pyenv init -|psub)'
}
@test "option to skip rehash" {