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" FILES="vimrc zshrc gitconfig"
for file in {$FILES} do for file in $FILES
ln -s -T {$SCRIPTPATH}{$file} .{$file} do
mv -P .{$file} /home/{$USER} ln -s -T $SCRIPTPATH/$file .$file
mv .$file /home/$USER
done done

Loading…
Cancel
Save