mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
Add nvm_iojs_prefix
This commit is contained in:
parent
3fa11c35cb
commit
8be97c8abb
11
nvm.sh
11
nvm.sh
@ -347,6 +347,10 @@ nvm_resolve_alias() {
|
|||||||
return 2
|
return 2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
nvm_iojs_prefix() {
|
||||||
|
echo "iojs"
|
||||||
|
}
|
||||||
|
|
||||||
nvm_ls() {
|
nvm_ls() {
|
||||||
local PATTERN
|
local PATTERN
|
||||||
PATTERN="$1"
|
PATTERN="$1"
|
||||||
@ -1189,7 +1193,12 @@ nvm() {
|
|||||||
echo "0.22.2"
|
echo "0.22.2"
|
||||||
;;
|
;;
|
||||||
"unload" )
|
"unload" )
|
||||||
unset -f nvm nvm_print_versions nvm_checksum nvm_ls_remote nvm_ls nvm_remote_version nvm_version nvm_rc_version nvm_version_greater nvm_version_greater_than_or_equal_to nvm_supports_source_options > /dev/null 2>&1
|
unset -f nvm nvm_print_versions nvm_checksum \
|
||||||
|
nvm_iojs_prefix \
|
||||||
|
nvm_ls_remote nvm_ls nvm_remote_version \
|
||||||
|
nvm_version nvm_rc_version \
|
||||||
|
nvm_version_greater nvm_version_greater_than_or_equal_to \
|
||||||
|
nvm_supports_source_options > /dev/null 2>&1
|
||||||
unset RC_VERSION NVM_NODEJS_ORG_MIRROR NVM_DIR NVM_CD_FLAGS > /dev/null 2>&1
|
unset RC_VERSION NVM_NODEJS_ORG_MIRROR NVM_DIR NVM_CD_FLAGS > /dev/null 2>&1
|
||||||
;;
|
;;
|
||||||
* )
|
* )
|
||||||
|
7
test/fast/Unit tests/nvm_iojs_prefix
Executable file
7
test/fast/Unit tests/nvm_iojs_prefix
Executable file
@ -0,0 +1,7 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
die () { echo $@ ; exit 1; }
|
||||||
|
|
||||||
|
. ../../../nvm.sh
|
||||||
|
|
||||||
|
[ "$(nvm_iojs_prefix)" = "iojs" ] || die '"nvm_iojs_prefix" did not return the string "iojs". why did this fail?!'
|
Loading…
Reference in New Issue
Block a user