Browse Source

fix failing if check in autoload script

Siddharth Sakhadeo 7 years ago
parent
commit
b81c120e0c
  1. 2
      README.md

2
README.md

@ -378,7 +378,7 @@ load-nvmrc() {
if [ "$nvmrc_node_version" = "N/A" ]; then if [ "$nvmrc_node_version" = "N/A" ]; then
nvm install nvm install
elif [ "$nvmrc_node_version" != "$node_version" ]; then elif [ "$nvmrc_node_version" = "$node_version" ]; then
nvm use nvm use
fi fi
elif [ "$node_version" != "$(nvm version default)" ]; then elif [ "$node_version" != "$(nvm version default)" ]; then

Loading…
Cancel
Save