link logo/icon
This commit is contained in:
parent
70a8392793
commit
cb76d29f0b
1 changed files with 13 additions and 0 deletions
13
install.py
13
install.py
|
@ -33,6 +33,19 @@ for root, folders, files in os.walk(join(base, 'static')):
|
||||||
os.makedirs(target_folder)
|
os.makedirs(target_folder)
|
||||||
os.symlink(rel_src, target)
|
os.symlink(rel_src, target)
|
||||||
|
|
||||||
|
for img in ('logo.png', 'icon.png'):
|
||||||
|
f = join('/srv/pandora/static/png', img)
|
||||||
|
custom = join('/srv/pandora/static/png', img.replace('.png', '.%s.png' % name))
|
||||||
|
if os.path.exists(custom):
|
||||||
|
if not os.path.islink(f):
|
||||||
|
os.unlink(f)
|
||||||
|
else:
|
||||||
|
path = os.path.realpath(f)
|
||||||
|
if name not in path:
|
||||||
|
os.unlink(f)
|
||||||
|
if not os.path.exists(f):
|
||||||
|
os.symlink(os.path.basename(custom), f)
|
||||||
|
|
||||||
if overwrite:
|
if overwrite:
|
||||||
os.chdir('/srv/pandora/static/js')
|
os.chdir('/srv/pandora/static/js')
|
||||||
for filename, sitename in overwrite:
|
for filename, sitename in overwrite:
|
||||||
|
|
Loading…
Reference in a new issue