From a61d3b67afdd206738e921224f1370f11aaedea3 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Wed, 28 Oct 2015 21:16:06 -0500 Subject: [PATCH] fix symlink location in install script fixes #9 Fix the symlink location in install/link.sh Thanks to @nilbot for pointing it out! --- install/link.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/link.sh b/install/link.sh index 31a78ee..ab4b11b 100755 --- a/install/link.sh +++ b/install/link.sh @@ -7,5 +7,5 @@ linkables=$( find -H "$DOTFILES" -maxdepth 3 -name '*.symlink' ) for file in $linkables ; do target="$HOME/.$( basename $file ".symlink" )" echo "creating symlink for $file" - ln -s $DOTFILES/$file $target + ln -s $file $target done