mirror of
1
0
Fork 0

Filecmp for not deleting, see issue #133

This commit is contained in:
David John 2017-08-14 03:26:23 +01:00
parent fe9ca6f5ed
commit 72fdfde604
1 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
import os
import shutil
import dotbot
import filecmp
class Link(dotbot.Plugin):
@ -102,6 +103,9 @@ class Link(dotbot.Plugin):
fullpath = os.path.expanduser(path)
if relative:
source = self._relative_path(source, fullpath)
if filecmp.cmp(source, fullpath)
self._log_lowinfo('Not changing unchanged file %s' % path)
return success
if ((self._is_link(path) and self._link_destination(path) != source) or
(self._exists(path) and not self._is_link(path))):
removed = False