diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-10-08 18:27:44 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-10-08 18:27:44 +0200 |
commit | 0560ae64728dbfe538d9b5edfb3690f3c1e60979 (patch) | |
tree | 294208b4535c3c59b3d29382106f76ca6aeb6fa5 | |
parent | ac94c903f607b29fbb1ec7074005a41e92a40b4b (diff) | |
download | ponysay-0560ae64728dbfe538d9b5edfb3690f3c1e60979.tar.gz ponysay-0560ae64728dbfe538d9b5edfb3690f3c1e60979.tar.bz2 ponysay-0560ae64728dbfe538d9b5edfb3690f3c1e60979.zip |
recursive chmod, safety first
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |