mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-11-17 10:30:42 +01:00
9 lines
162 B
Plaintext
9 lines
162 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
die () { echo $@ ; exit 1; }
|
||
|
|
|
||
|
|
. ../../../nvm.sh
|
||
|
|
|
||
|
|
[ "_$(nvm_alias_path)" = "_$NVM_DIR/alias" ] || die "nvm_alias_path did not requrn correct location"
|
||
|
|
|