mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-11 06:41:50 +00:00
10 lines
173 B
Bash
Executable File
10 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. ../../nvm.sh
|
|
mkdir -p ../../v0.0.{1,3,9}
|
|
|
|
# The result should contain the version numbers.
|
|
nvm ls | grep v0.0.1 &&
|
|
nvm ls | grep v0.0.3 &&
|
|
nvm ls | grep v0.0.9
|