nvm/test/fast/$BASH_SOURCE should not be a problem in sh and zsh
Jonas Dohse 192b2ecb1b Support deduction of nvm directory in zsh
In zsh nvm fails to deduce nvm's directory from nvm.sh, because
`$BASH_SOURCE` is not present in zsh. Use the directory of `$0`, if its
filename is `nvm.sh`. We use `$BASH_SOUCE` in bash, `$0` in zsh (and
similar) and fallback to `~/.nvm` otherwise.
2014-03-21 01:05:23 +01:00

9 lines
134 B
Bash
Executable File

#!/bin/sh
echo Testing bash
bash -c '. ../../nvm.sh'
echo Testing zsh
zsh -c '. ../../nvm.sh'
echo Testing sh
sh -c '. ../../nvm.sh'