mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-16 17:44:23 +01:00
recursive chmod, safety first
This commit is contained in:
parent
ac94c903f6
commit
0560ae6472
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -505,7 +505,7 @@ class Setup():
|
|||
print('Creating directory ' + dir)
|
||||
os.mkdir(dir)
|
||||
print('Setting permission mode mask for ' + dir + ' to 6777')
|
||||
Popen('chmod 6777 -- ' + dir, shell=True).wait()
|
||||
Popen('chmod -R 6777 -- ' + dir, shell=True).wait()
|
||||
for shell in [item[0] for item in shells]:
|
||||
if conf[shell] is not None:
|
||||
for command in commands:
|
||||
|
|
Loading…
Reference in a new issue