1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:44:45 +00:00

refactoring

This commit is contained in:
deadc0de6
2017-09-09 10:46:20 +02:00
parent 62336a2908
commit a67d964f05

View File

@@ -69,7 +69,7 @@ def install(opts, conf):
diff=opts['installdiff'], quiet=opts['quiet'])
installed = []
for dotfile in dotfiles:
if hasattr(dotfile, "link") and dotfile.link:
if hasattr(dotfile, 'link') and dotfile.link:
r = inst.link(dotfile.src, dotfile.dst)
else:
r = inst.install(t, opts['profile'], dotfile.src, dotfile.dst)
@@ -194,7 +194,7 @@ def header():
LOG.log("")
if __name__ == '__main__':
def main():
ret = True
args = docopt(USAGE, version=VERSION)
conf = Cfg(args['--cfg'])
@@ -237,7 +237,12 @@ if __name__ == '__main__':
except KeyboardInterrupt:
LOG.err('interrupted')
ret = False
if ret:
return ret
if __name__ == '__main__':
if main():
sys.exit(0)
sys.exit(1)