From 0560ae64728dbfe538d9b5edfb3690f3c1e60979 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Mon, 8 Oct 2012 18:27:44 +0200 Subject: recursive chmod, safety first --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b5374c1..4298366 100755 --- a/setup.py +++ b/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: -- cgit