mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-14 07:00:01 -04:00
Fixed permission level
(fully open causes problems with ruby)
This commit is contained in:
parent
52dfcc7093
commit
7ff15630fc
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ class SetupFactory(object):
|
|||
self.config.directory.remove_directories()
|
||||
print("Changing permissions of files...")
|
||||
#TODO: Make this more robust and portable(doesn't pose security risk though)
|
||||
subprocess.call("chmod -R 0777 " + self.config.directory.root_dir + os.sep + "coco" + os.sep + "bin",shell=True)
|
||||
subprocess.call("chmod -R 755 " + self.config.directory.root_dir + os.sep + "coco" + os.sep + "bin",shell=True)
|
||||
|
||||
print("Done! If you want to start the server, head into /coco/bin and run ")
|
||||
print("1. sudo python startDatabase.py")
|
||||
|
|
Loading…
Reference in a new issue