From 2996a368b77eaa4f02fa9450911c00192403a6bb Mon Sep 17 00:00:00 2001 From: Tony Duckles Date: Fri, 4 May 2012 15:24:44 -0500 Subject: [PATCH] .bashrc: Quote-wrap $PATH/$MANPATH when calling puniq Need to quote-wrap $PATH/$MANPATH to handle cases of directory names containing spaces (Cygwin). --- .bashrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.bashrc b/.bashrc index 07ad840..94c98ff 100644 --- a/.bashrc +++ b/.bashrc @@ -386,8 +386,8 @@ test -r ~/.shenv && . ~/.shenv # condense PATH entries -PATH=$(puniq $PATH) -MANPATH=$(puniq $MANPATH) +PATH=$(puniq "$PATH") +MANPATH=$(puniq "$MANPATH") # Use the color prompt by default when interactive test -n "$PS1" && -- 2.43.0