Skip to content
Snippets Groups Projects
Commit f1d03d84 authored by Jiří Kalvoda's avatar Jiří Kalvoda
Browse files

merge_modules: preserve exec right

parent 90333353
No related branches found
No related tags found
No related merge requests found
......@@ -56,6 +56,8 @@ def merge(do_commit):
else:
with open(web_dir+path+fname, "wb") as f:
f.write(data)
if os.access(module_dir+path+fname, os.X_OK):
os.chmod(web_dir+path+fname, 0o755)
for m in modules:
go(m, '/')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment