mirror of
https://github.com/Hopiu/django-markdownx.git
synced 2026-03-16 21:40:24 +00:00
Fixed permissions for .sh files.
This commit is contained in:
parent
a8db6a0d0c
commit
8ce1809aa3
1 changed files with 1 additions and 1 deletions
2
dev.py
2
dev.py
|
|
@ -180,7 +180,7 @@ def create_files(name):
|
|||
|
||||
if splitext(absolute_path)[1] == '.sh':
|
||||
st = stat(absolute_path)
|
||||
chmod('somefile', st.st_mode | S_IEXEC)
|
||||
chmod(absolute_path, st.st_mode | S_IEXEC)
|
||||
|
||||
contents_xml.write(
|
||||
file_or_filename=XML_FILE_ABSOLUTE_PATH,
|
||||
|
|
|
|||
Loading…
Reference in a new issue