From f7c411ed04168ac6323113b7716664293cd1a981 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Wed, 2 Aug 2017 21:48:14 +0100 Subject: [PATCH] Fix default .bash_host --- .bash_host | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.bash_host b/.bash_host index 8ca0fb9..cb95497 100644 --- a/.bash_host +++ b/.bash_host @@ -31,9 +31,9 @@ HOST_COLOUR="${HC}${FYEL}" # Whether we should disable hh integration or not. # Useful if we're on a machine that doesn't have it installed. -NO_HH=false; +NO_HH=true; -which hh; -if [[ "$?" -ne "0" ]; then +which hh 1>/dev/null 2>&1; +if [[ "$?" -ne "0" ]]; then NO_HH=true; fi