Browse Source

Debugs the installtion process

merge-requests/1/merge
lhark 11 years ago
parent
commit
26180cc0a6
  1. 7
      install.sh

7
install.sh

@ -5,7 +5,8 @@ SCRIPTPATH=$(dirname "$SCRIPT")
FILES="vimrc zshrc gitconfig"
for file in {$FILES} do
ln -s -T {$SCRIPTPATH}{$file} .{$file}
mv -P .{$file} /home/{$USER}
for file in $FILES
do
ln -s -T $SCRIPTPATH/$file .$file
mv .$file /home/$USER
done

Loading…
Cancel
Save