You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
|
|
. ../../../nvm.sh |
|
|
|
mkdir ../../../v0.0.{1,3,9} |
|
mkdir ../../../v0.3.{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 && |
|
nvm ls | grep v0.3.1 && |
|
nvm ls | grep v0.3.3 && |
|
nvm ls | grep v0.3.9
|
|
|