summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xinstall16
1 files changed, 1 insertions, 15 deletions
diff --git a/install b/install
index 41d8290..b3dd84a 100755
--- a/install
+++ b/install
@@ -11,25 +11,11 @@ then
 fi
 
 install-dot () {
-	local absolute
-	if [[ ${1[-1]} == "/" ]]
-	then
-		absolute=$PWD/
-
-		if [[ ! -d $1 ]]
-		then
-			mkdir $1
-		fi
-
-	else
-		absolute=""
-	fi
-
 	for f in $@[2,-1]
 	do
 		if [[ ! -e $1$f:t ]]
 		then
-			ln -sf $absolute$f $1$f:t
+			ln -sf $f $1$f:t
 		fi
 	done
 }