This commit is contained in:
j 2019-04-18 11:47:05 +02:00
commit 962a16a3e8
3 changed files with 14 additions and 0 deletions

View file

@ -46,6 +46,8 @@ os.symlink(basename(target), t)
for root, folders, files in os.walk(join(base, 'scripts')):
for f in files:
src = join(root, f)
if '__pycache__' in src or src.endswith('.pyc'):
continue
target = src.replace(base, '/srv/pandora')
rel_src = os.path.relpath(src, dirname(target))
if os.path.exists(target):