From 82e88d07a620d21a94daa8847d9e9035594822b0 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 6 Feb 2012 13:52:33 +0000 Subject: [PATCH] path_list function wasn't working in bash --- shell/helpers/path_helpers.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/helpers/path_helpers.sh b/shell/helpers/path_helpers.sh index 4aa33fa..08d06b5 100644 --- a/shell/helpers/path_helpers.sh +++ b/shell/helpers/path_helpers.sh @@ -18,7 +18,7 @@ # /usr/local/bin # path_list () { - echo ${PATH//:/\\n} + echo -e ${PATH//:/\\n} } # Append specified path to the end of PATH.