1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-11-25 02:57:22 +00:00

Bugfix change permissions during update

This commit is contained in:
OzzieIsaacs 2017-01-30 19:10:22 +01:00
parent 1d3be7f4c6
commit af0417758c

View File

@ -290,9 +290,9 @@ def reduce_files(remove_items, exclude_items):
return rf return rf
def moveallfiles(root_src_dir, root_dst_dir): def moveallfiles(root_src_dir, root_dst_dir):
change_permissions = False
if sys.platform == "win32" or sys.platform == "darwin":
change_permissions = True change_permissions = True
if sys.platform == "win32" or sys.platform == "darwin":
change_permissions=False
else: else:
app.logger.debug('OS-System : '+sys.platform ) app.logger.debug('OS-System : '+sys.platform )
new_permissions=os.stat(root_dst_dir) new_permissions=os.stat(root_dst_dir)