mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-30 08:04:08 +00:00
setup.py: don't make bin/tahoe.pyscript executable. fixes #1347
This commit is contained in:
parent
a8c5734e72
commit
89581eb475
13
setup.py
13
setup.py
@ -323,12 +323,13 @@ class MakeExecutable(Command):
|
||||
f.write(line)
|
||||
f.close()
|
||||
|
||||
# chmod +x
|
||||
old_mode = stat.S_IMODE(os.stat(tahoe_script)[stat.ST_MODE])
|
||||
new_mode = old_mode | (stat.S_IXUSR | stat.S_IRUSR |
|
||||
stat.S_IXGRP | stat.S_IRGRP |
|
||||
stat.S_IXOTH | stat.S_IROTH )
|
||||
os.chmod(tahoe_script, new_mode)
|
||||
# chmod +x
|
||||
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 |
|
||||
stat.S_IXGRP | stat.S_IRGRP |
|
||||
stat.S_IXOTH | stat.S_IROTH )
|
||||
os.chmod(unix_script, new_mode)
|
||||
|
||||
old_tahoe_exe = os.path.join("bin", "tahoe.exe")
|
||||
try:
|
||||
|
Loading…
x
Reference in New Issue
Block a user