changeset 17:cb2b2943221d

Stop mentioning this because it makes shelling out in emacs annoying.
author Augie Fackler <durin42@gmail.com>
date Fri, 05 Dec 2008 11:30:15 -0600
parents 0de17fe9c428
children 30467b2328cb
files .zsh/00.path_manipulation.zsh
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.zsh/00.path_manipulation.zsh
+++ b/.zsh/00.path_manipulation.zsh
@@ -2,7 +2,7 @@
 
 function insert_path_element() {
     if echo "$PATH" | grep "$1:" >> /dev/null; then
-        echo $1 already in path
+        true
     else
         export PATH="$1:$PATH"
     fi