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.
13 lines
232 B
13 lines
232 B
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
fnm install v6.10.0
|
||
|
fnm install v8.10.0
|
||
|
fnm install v10.10.0
|
||
|
fnm use v8.10.0
|
||
|
|
||
|
fnm exec -- node -v | grep "v8.10.0"
|
||
|
fnm exec --using 6 -- node -v | grep "v6.10.0"
|
||
|
fnm exec --using 10 -- node -v | grep "v10.10.0"
|