Merge pull request #111 from mikepurvis/avoid-stacks
Avoid putting the rosbuild stacks dir on RPP if it doesn't exist.
This commit is contained in:
commit
0b34080563
|
@ -23,6 +23,7 @@ for workspace in workspaces:
|
|||
data = f.read()
|
||||
if data == '':
|
||||
paths.append(os.path.join(workspace, 'share'))
|
||||
if os.path.isdir(os.path.join(workspace, 'stacks')):
|
||||
paths.append(os.path.join(workspace, 'stacks'))
|
||||
else:
|
||||
for source_path in data.split(';'):
|
||||
|
|
Loading…
Reference in New Issue