implement explorer_out_dir

Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
Steven Armstrong 2011-10-07 13:15:11 +02:00
parent 36803d16db
commit 6e011dc289
1 changed files with 7 additions and 0 deletions

View File

@ -116,6 +116,13 @@ class Object(object):
def code_remote(self):
return os.path.join(self.path, "code-remote")
@property
def explorer_out_dir(self):
path = os.path.join(self.path, "explorer")
if not os.path.isdir(path):
os.mkdir(path)
return path
### requirements
@property
def requirements(self):