fix failing if check in autoload script

Siddharth Sakhadeo 2018-05-25 15:33:42 -07:00
parent 57ec311f53
commit b81c120e0c
1 changed files with 1 additions and 1 deletions

View File

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