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.
 
 
 
 

33 lines
372 B

#!/bin/zsh
set -e
GAL_PROMPT_PREFIX='\e[34m✡ \e[0m'
function type() {
printf $GAL_PROMPT_PREFIX
echo $* | pv -qL $[10+(-2 + RANDOM%5)]
}
cd ./feature_tests/nvmrc
type 'eval `fnm env`'
eval `fnm env`
type 'fnm --version'
fnm --version
type 'cat .nvmrc'
cat .nvmrc
type 'fnm install'
fnm install
type 'fnm use'
fnm use
type 'node -v'
node -v
sleep 2
echo ""