From d16c484fe103239ef7c5b4c9282c85fb08d327f1 Mon Sep 17 00:00:00 2001 From: Luke Childs Date: Tue, 10 Jan 2017 12:55:51 +0700 Subject: [PATCH] Always return a good exit code --- zsh-nvm.plugin.zsh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zsh-nvm.plugin.zsh b/zsh-nvm.plugin.zsh index 2fd2834..77599c8 100644 --- a/zsh-nvm.plugin.zsh +++ b/zsh-nvm.plugin.zsh @@ -189,3 +189,7 @@ if [[ "$ZSH_NVM_NO_LOAD" != true ]]; then fi fi + +# Make sure we always return good exit code +# We can't `return 0` because that breaks antigen +true