Skip to content

Commit

Permalink
Fix setting executable flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Aug 29, 2024
1 parent 97e992e commit 562755f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sema4ai-python-ls-core/src/sema4ai_ls_core/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def download_with_resume(

if make_executable:
st = os.stat(target)
os.chmod(target, st.st_mode | stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)
os.chmod(target, st.st_mode | stat.S_IEXEC)

return target

Expand Down

0 comments on commit 562755f

Please sign in to comment.