Skip to content
Snippets Groups Projects
Commit 728bd9b8 authored by Yujin Robot's avatar Yujin Robot
Browse files

look for depend tags, as well as build_depend tags.

parent 5d210a9d
No related branches found
No related tags found
No related merge requests found
......@@ -173,6 +173,9 @@ class CatkinPackage {
packageXml.build_depend.each { d ->
dependencies.add(d.text().replace(" ",""))
}
packageXml.depend.each { d ->
dependencies.add(d.text().replace(" ",""))
}
}
def String toString() {
def out = new String()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment