cwd key for 'cwd'
This commit is contained in:
parent
2f8d3c892e
commit
a7241a19bb
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in New Issue