Browse Source

Fix install script

merge-requests/1/merge
lhark 10 years ago
parent
commit
75568b300e
  1. 5
      install.sh

5
install.sh

@ -7,7 +7,10 @@ SCRIPTPATH=$(dirname "$SCRIPT")
FILES="vimrc zshrc gitconfig vim"
# Create symbolic links in the user's home dir
OLDPATH=`pwd`
cd $HOME
for file in $FILES
do
ln -s -t $HOME .$file
ln -s ${SCRIPTPATH}/${file} .${file}
done
cd $OLDPATH

Loading…
Cancel
Save