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:
@@ -7,5 +7,5 @@ linkables=$( find -H "$DOTFILES" -maxdepth 3 -name '*.symlink' )
|
|||||||
for file in $linkables ; do
|
for file in $linkables ; do
|
||||||
target="$HOME/.$( basename $file ".symlink" )"
|
target="$HOME/.$( basename $file ".symlink" )"
|
||||||
echo "creating symlink for $file"
|
echo "creating symlink for $file"
|
||||||
ln -s $DOTFILES/$file $target
|
ln -s $file $target
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user