From b81c120e0c7b2ce03062d4f1a3aaefae38362e89 Mon Sep 17 00:00:00 2001 From: Siddharth Sakhadeo Date: Fri, 25 May 2018 15:33:42 -0700 Subject: [PATCH] fix failing if check in autoload script --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 78ae541..080d4b2 100644 --- a/README.md +++ b/README.md @@ -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