Merge branch 'master' of gitosis@majnematic.com:davesdots

This commit is contained in:
David Majnemer 2009-09-05 16:57:49 -05:00
commit 3b60339bc3

View file

@ -91,7 +91,7 @@ for my $file (keys %links) {
# If a link already exists, see if it points to this file. If so, skip it.
# This prevents extra warnings caused by previous runs of install.pl.
if(-e $dest && -l $dest) {
if(!$force && -e $dest && -l $dest) {
next if readlink($dest) eq $src;
}