From c02f19355294dc074adf17f994417a73d6784136 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sun, 26 May 2013 14:02:13 +1200 Subject: Explicit env variable exports --- bash/bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bash') diff --git a/bash/bashrc b/bash/bashrc index 742f58ee..364f17ce 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -75,12 +75,12 @@ pathdirs="${HOME}/.local/bin /usr/local/pgsql/bin" for pathdir in $pathdirs; do [[ -d "$pathdir" ]] \ - && PATH="${pathdir}:${PATH}" + && export PATH="${pathdir}:${PATH}" done -# Add various manual paths if they exist +# Add home directory manual path if it exists [[ -d "${HOME}/.local/share/man" ]] \ - && MANPATH="${HOME}/.local/share/man:${MANPATH}" + && export MANPATH="${HOME}/.local/share/man:${MANPATH}" # Figure out how many colors we have now. hash tput && colors=$(tput colors) -- cgit v1.2.3