Skip to content

Commit 3b10517

Browse files
author
Tom O'Hara
committed
fixes ANACONDA_HOME init
1 parent e6a503f commit 3b10517

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

anaconda-aliases.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ perl="perl -Ssw"
2828
if [ "$ANACONDA_HOME" == "" ]; then
2929
export ANACONDA_HOME
3030
ANACONDA_HOME=$(realpath "$(dirname "$(which conda)" 2> /dev/null)"/../)
31-
if [ "$ANACONDA_HOME" = "" ]; then
31+
if [[ ("$ANACONDA_HOME" = "") || ("$ANACONDA_HOME" = "/home") ]]; then
3232
export ANACONDA_HOME=/usr/local/misc/programs/anaconda3
3333
fi
3434
fi

0 commit comments

Comments
 (0)