-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #602 from ljharb/install_on_source
Support `--install` option on sourcing `nvm.sh`
- Loading branch information
Showing
3 changed files
with
73 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
test/sourcing/Sourcing nvm.sh with --install and .nvmrc should install it
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#!/bin/sh | ||
|
||
die () { echo $@ ; exit 1; } | ||
supports_source_options () { | ||
[ "_$(echo 'echo $1' | . /dev/stdin yes)" = "_yes" ] | ||
} | ||
|
||
if ! supports_source_options; then | ||
echo 'this shell does not support passing options on sourcing' | ||
exit 0; | ||
fi | ||
|
||
echo '0.10.2' > ../../.nvmrc || die 'creation of .nvmrc failed' | ||
|
||
. ../../nvm.sh --install | ||
EXIT_CODE="$(echo $?)" | ||
|
||
echo 'sourcing complete.' | ||
|
||
nvm_version 0.10.2 >/dev/null 2>&1 || die "v0.10.2 not installed: $(nvm ls)" | ||
|
||
[ "_$(nvm_rc_version | \grep -o -e 'with version .*$')" = "_with version <0.10.2>" ] || die "nvm_rc_version $(nvm_rc_version)" | ||
|
||
[ "_$EXIT_CODE" = "_0" ] || die "sourcing returned nonzero exit code: $EXIT_CODE" | ||
|
||
NVM_LS_CURRENT="$(nvm ls current | \grep -o v0.10.2)" | ||
[ "_$NVM_LS_CURRENT" = '_v0.10.2' ] || die "'nvm ls current' did not return '-> v0.10.2', got '$NVM_LS_CURRENT' `nvm ls`" | ||
|
32 changes: 32 additions & 0 deletions
32
test/sourcing/Sourcing nvm.sh with --install should install the default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/bin/sh | ||
|
||
die () { echo $@ ; exit 1; } | ||
supports_source_options () { | ||
[ "_$(echo 'echo $1' | . /dev/stdin yes)" = "_yes" ] | ||
} | ||
|
||
if ! supports_source_options; then | ||
echo 'this shell does not support passing options on sourcing' | ||
exit 0; | ||
fi | ||
|
||
echo '0.10.2' > ../../alias/default || die 'creation of default alias failed' | ||
|
||
echo 'sourcing nvm with --install...' | ||
|
||
. ../../nvm.sh --install | ||
EXIT_CODE="$(echo $?)" | ||
|
||
echo 'sourcing complete.' | ||
|
||
nvm_version 0.10.2 >/dev/null 2>&1 || die "v0.10.2 not installed: $(nvm ls)" | ||
|
||
[ "_$EXIT_CODE" = "_0" ] || die "sourcing returned nonzero exit code: $EXIT_CODE" | ||
|
||
NVM_LS_CURRENT="$(nvm ls current | \grep -o v0.10.2)" | ||
[ "_$NVM_LS_CURRENT" = '_v0.10.2' ] || die "'nvm ls current' did not return '-> v0.10.2', got '$NVM_LS_CURRENT'" | ||
|
||
NVM_ALIAS_DEFAULT="$(nvm alias default)" | ||
[ "_$NVM_ALIAS_DEFAULT" = "_default -> 0.10.2 (-> v0.10.2)" ] \ | ||
|| die "'nvm alias default did not return 'default -> 0.10.2 (-> v0.10.2)', got '$NVM_ALIAS_DEFAULT'" | ||
|