From b830be48240a45f02051794b25295f3b123272db Mon Sep 17 00:00:00 2001 From: ADAM David Alan Martin Date: Sun, 2 Feb 2014 16:54:30 -0500 Subject: [PATCH] Fixed path capture in startup hook for spaces --- startup_hooks/tcshrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/startup_hooks/tcshrc b/startup_hooks/tcshrc index 03656bc..019e7cb 100644 --- a/startup_hooks/tcshrc +++ b/startup_hooks/tcshrc @@ -43,9 +43,9 @@ if( -c `tty` ) then # Capture the original path, so that we don't # keep infinitely expanding it. if( $?CSHENV_ORIGINAL_PATH ) then - setenv PATH ${CSHENV_ORIGINAL_PATH} + setenv PATH "${CSHENV_ORIGINAL_PATH}" else - setenv CSHENV_ORIGINAL_PATH ${PATH} + setenv CSHENV_ORIGINAL_PATH "${PATH}" endif source ${CSHENV_DIR}/tcshrc