mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-16 09:01:51 +00:00
11 lines
161 B
Bash
Executable File
11 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ../../../nvm.sh
|
|
|
|
mkdir ../../../v0.1
|
|
mkdir ../../../v0.3
|
|
|
|
# The result should contain the version numbers.
|
|
nvm ls | grep v0.1 &&
|
|
nvm ls | grep v0.3
|