Updated
Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
c65eae9009
commit
5cfff71629
|
@ -226,7 +226,9 @@ def shared_folders():
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
def _logpath(path, names):
|
||||||
|
logging.info('Working in %s' % path)
|
||||||
|
return [] # nothing will be ignored
|
||||||
|
|
||||||
def icons_themes():
|
def icons_themes():
|
||||||
"""
|
"""
|
||||||
|
@ -270,10 +272,9 @@ def icons_themes():
|
||||||
for size_length in range(size_q):
|
for size_length in range(size_q):
|
||||||
source = src_q.popleft()
|
source = src_q.popleft()
|
||||||
des = des_q.popleft()
|
des = des_q.popleft()
|
||||||
logging.info('Working in %s' % source)
|
|
||||||
shutil.copytree(HOME_FOLDER + source,
|
shutil.copytree(HOME_FOLDER + source,
|
||||||
HOME_FOLDER + WPCHROOT + des,
|
HOME_FOLDER + WPCHROOT + des,
|
||||||
dirs_exist_ok = True
|
dirs_exist_ok = True, ignore=_logpath
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue