fix symlink location in install script fixes #9

Fix the symlink location in install/link.sh
Thanks to @nilbot for pointing it out!
This commit is contained in:
Nick Nisi
2015-10-28 21:16:06 -05:00
parent a585e0caf6
commit a61d3b67af

View File

@@ -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