diff --git a/install.py b/install.py index 592b6d9..76da228 100755 --- a/install.py +++ b/install.py @@ -12,12 +12,21 @@ os.chdir(base) for root, folders, files in os.walk(join(base, 'static')): for f in files: src = join(root, f) + if 'ontology/' in src: + continue target = src.replace(base, '/srv/pandora') rel_src = os.path.relpath(src, dirname(target)) if os.path.exists(target): os.unlink(target) os.symlink(rel_src, target) +src = join(base, 'static', 'ontology') +target = src.replace(base, '/srv/pandora') +rel_src = os.path.relpath(src, dirname(target)) +if os.path.exists(target): + os.unlink(target) +os.symlink(rel_src, target) + os.chdir(base) src = join(base, 'config.jsonc') target = '/srv/pandora/pandora/config.%s.jsonc' % name