forked from Archive/PX4-Autopilot
Fix relative path of inject XML file. By Yi Yi
This commit is contained in:
parent
e045ab131e
commit
2cf6d9f605
|
@ -130,7 +130,7 @@ def main():
|
|||
# Output to XML file
|
||||
if args.xml:
|
||||
print("Creating XML file " + args.xml)
|
||||
out = xmlout.XMLOutput(param_groups, args.board, args.inject_xml)
|
||||
out = xmlout.XMLOutput(param_groups, args.board, os.path.join(args.src_path, args.inject_xml))
|
||||
out.Save(args.xml)
|
||||
|
||||
# Output to DokuWiki tables
|
||||
|
|
Loading…
Reference in New Issue