From 64279ce7b713edf7bdffc6ddd2e27d220079be9f Mon Sep 17 00:00:00 2001 From: hjp Date: Fri, 16 Mar 2007 08:51:10 +0000 Subject: [PATCH] append $ORACLE_HOME/bin to PATH if $ORACLE_HOME is set (shouldn't this happen when $ORACLE_HOME is set?) --- .zshenv | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.zshenv b/.zshenv index 633f9f7..fa881a1 100644 --- a/.zshenv +++ b/.zshenv @@ -254,4 +254,7 @@ elif [ -f /etc/oraenv ] then . /etc/oraenv fi - +if [ -n "$ORACLE_HOME" ] +then + PATH=`apppath "$ORACLE_HOME/bin"` +fi