1
0
Fork 0

Fix default .bash_host

This commit is contained in:
Starbeamrainbowlabs 2017-08-02 21:48:14 +01:00
parent 63d2449bff
commit f7c411ed04
1 changed files with 3 additions and 3 deletions

View File

@ -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