1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-10 15:04:16 +00:00

fix bug for #172

This commit is contained in:
deadc0de6
2019-06-24 06:28:34 -04:00
parent 8902cd3cf4
commit 75d88b78bd

View File

@@ -214,7 +214,7 @@ class Installer:
msg = 'ignoring "{}", link already exists'.format(dst) msg = 'ignoring "{}", link already exists'.format(dst)
if self.debug: if self.debug:
self.log.dbg(msg) self.log.dbg(msg)
return True, None return False, None
if self.dry: if self.dry:
self.log.dry('would remove {} and link to {}'.format(dst, src)) self.log.dry('would remove {} and link to {}'.format(dst, src))
return True, None return True, None