mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 06:11:51 +00:00
10 lines
109 B
Bash
Executable File
10 lines
109 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
\. ../../nvm.sh
|
|
|
|
nvm alias test v0.1.2
|
|
|
|
[ "$(cat "$(nvm_alias_path)/test")" = "v0.1.2" ]
|