stop faking it

This commit is contained in:
Loic Nageleisen 2011-05-29 15:38:50 +02:00
parent 4c6310bd88
commit 84ed805698
2 changed files with 2 additions and 9 deletions

View file

@ -1,8 +0,0 @@
#!/bin/sh
for dotfile in *; do
if [ "${dotfile}" != "scripts" ]; then
echo ln -sf "$(pwd)/${dotfile}" "~/.${dotfile}"
fi
done

View file

@ -2,7 +2,8 @@
for dotfile in *; do
if [ "${dotfile}" != "scripts" ]; then
echo ln -sf "$(pwd)/${dotfile}" "~/.${dotfile}"
echo "linking ${dotfile}"
ln -sf "$(pwd)/${dotfile}" "$HOME/.${dotfile}"
fi
done