From e24502769b62f49c576fbf72847242ec3caed247 Mon Sep 17 00:00:00 2001 From: Rodolphe Breard Date: Sun, 12 Feb 2017 15:21:30 +0100 Subject: [PATCH] Hide the potential last error status in .zshrc Sometimes the last command from .zshrc return something else than 0. This error status, although useless, can be displayed by some prompts. --- .zshrc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.zshrc b/.zshrc index 3017f27..6706102 100644 --- a/.zshrc +++ b/.zshrc @@ -50,3 +50,6 @@ pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1 && export SSH_AGENT_PID=$(pgrep # Pew hash pew 2>/dev/null && source $(pew shell_config) + +# Exit with a success status +true