mirror of
1
0
Fork 0

Start from previous work by ibeex on #90

For ibeex's original code see:
https://github.com/anishathalye/dotbot/issues/90#issuecomment-279323350
This commit is contained in:
Ivan Brkanac 2017-02-10 14:18:33 +01:00 committed by c-c-k
parent 712b30a445
commit 6b324328b6
1 changed files with 23 additions and 0 deletions

View File

@ -2,6 +2,7 @@ import glob
import os
import shutil
import sys
import errno
from ..plugin import Plugin
from ..util import shell_command
@ -120,6 +121,28 @@ class Link(Plugin):
self._log.debug("Test '%s' returned false" % command)
return ret == 0
def _move(self, link_name, path):
success = True
source = os.path.expanduser(link_name)
destination = os.path.join(self._context.base_directory(), path)
if os.path.isdir(source):
shutil.copytree(source, destination)
shutil.rmtree(source, ignore_errors=True)
elif os.path.isfile(source):
try:
os.makedirs(os.path.split(destination)[0])
except OSError as exception:
if exception.errno != errno.EEXIST:
success = False
# TODO: check what is eerno.EEXIST and replace above with pass if relevant
shutil.copy(source, destination)
os.unlink(source)
else:
self._log.warning("Config file missing %s" % source)
return False
self._log.info("Moved existing config %s" % source)
return success
def _default_source(self, destination, source):
if source is None:
basename = os.path.basename(destination)