From d2efdbf3d4f583655ecbe5dba5163f32b1307582 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Fri, 1 May 2009 21:51:32 +0200 Subject: [PATCH] lib.sh: Fix for less capable echo versions. This occurs with bash on Mac OS X 10.5 for example. --- lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib.sh b/lib.sh index e9fd56d..799560c 100644 --- a/lib.sh +++ b/lib.sh @@ -39,7 +39,7 @@ link() { # Get all necessary paths. pwd=`pwd` base=`dirname "$2"` - source=`echo -n "$pwd/$1" | sed "s|$base/||"` + source=`echo "$pwd/$1" | sed "s|$base/||"` target=`basename "$2"` # Go to the directory where the link is going to be created. -- 2.43.2