cwd key for 'cwd'

This commit is contained in:
Ken Conley 2010-04-21 22:19:20 +00:00
parent 2f8d3c892e
commit a7241a19bb
1 changed files with 2 additions and 0 deletions

View File

@ -261,6 +261,8 @@ class LocalProcess(Process):
if self.cwd == 'node':
cwd = os.path.dirname(self.args[0])
elif self.cwd == 'cwd':
cwd = os.getcwd()
else:
cwd = get_ros_root()