Debugs the installtion process

This commit is contained in:
lhark 2015-06-03 23:45:41 +02:00
parent 7958f6eafc
commit 26180cc0a6

View file

@ -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