From 1bfb23e0fe1e729ab8986f4d452bd35fec2efe7c Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 6 Feb 2012 01:08:11 +0000 Subject: [PATCH] removed useless semi-colons :P --- shell/helpers/path_helpers.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/shell/helpers/path_helpers.sh b/shell/helpers/path_helpers.sh index fecad2a..1998bc2 100644 --- a/shell/helpers/path_helpers.sh +++ b/shell/helpers/path_helpers.sh @@ -38,8 +38,8 @@ path_list () { # path_append () { if [ ! -n "$1" ]; then return 2; fi - path_remove "$1"; - export PATH="$PATH:$1"; + path_remove "$1" + export PATH="$PATH:$1" } # Prepend specified path to the begnning of PATH. @@ -60,8 +60,8 @@ path_append () { # path_prepend () { if [ ! -n "$1" ]; then return 2; fi - path_remove "$1"; - export PATH="$1:$PATH"; + path_remove "$1" + export PATH="$1:$PATH" } # Remove specified path from PATH.