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.
11 lines
197 B
11 lines
197 B
![]()
13 years ago
|
#!/bin/sh
|
||
|
|
||
|
mkdir ../../../v0.1.3
|
||
|
mkdir ../../../v0.2.3
|
||
|
|
||
|
. ../../../nvm.sh
|
||
|
|
||
|
# The result should contain only the appropriate version numbers.
|
||
|
nvm ls 0.2 | grep v0.2.3 &&
|
||
|
nvm ls 0.1 | grep -v v0.2.3
|