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.
 
 
 
 

16 lines
321 B

#!/bin/bash
set -e
fnm install 6.11.3
fnm install 8.11.3
fnm alias 8.11.3 oldie
fnm alias 6.11.3 older
fnm default 6.11.3
VERSIONS_INSTALLED=$(fnm ls)
echo "$VERSIONS_INSTALLED" | grep 8.11.3 | grep oldie
echo "$VERSIONS_INSTALLED" | grep 6.11.3 | grep older
echo "$VERSIONS_INSTALLED" | grep 6.11.3 | grep default