mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-02-11 21:45:34 +00:00
setup.py: don't make bin/tahoe.pyscript executable. fixes #1347
This commit is contained in:
parent
a8c5734e72
commit
89581eb475
5
setup.py
5
setup.py
@ -324,11 +324,12 @@ class MakeExecutable(Command):
|
|||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
# chmod +x
|
# chmod +x
|
||||||
old_mode = stat.S_IMODE(os.stat(tahoe_script)[stat.ST_MODE])
|
unix_script = os.path.join("bin", "tahoe")
|
||||||
|
old_mode = stat.S_IMODE(os.stat(unix_script)[stat.ST_MODE])
|
||||||
new_mode = old_mode | (stat.S_IXUSR | stat.S_IRUSR |
|
new_mode = old_mode | (stat.S_IXUSR | stat.S_IRUSR |
|
||||||
stat.S_IXGRP | stat.S_IRGRP |
|
stat.S_IXGRP | stat.S_IRGRP |
|
||||||
stat.S_IXOTH | stat.S_IROTH )
|
stat.S_IXOTH | stat.S_IROTH )
|
||||||
os.chmod(tahoe_script, new_mode)
|
os.chmod(unix_script, new_mode)
|
||||||
|
|
||||||
old_tahoe_exe = os.path.join("bin", "tahoe.exe")
|
old_tahoe_exe = os.path.join("bin", "tahoe.exe")
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user