commit | 0e1f729d08aaa78a6781254324f7611341467f6d | [log] [tgz] |
---|---|---|
author | Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> | Sat Feb 10 01:57:29 2024 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Sat Feb 10 01:57:29 2024 +0000 |
tree | 6507d2fa6f1687c892fa12cb72e215572839a135 | |
parent | 5b636d31444722531e762fd76c7a95887214d99f [diff] | |
parent | b3ffad1992bb7f1eebb2d260f9df13759c1d592b [diff] |
Merge "Fix soongdbg deps" into main
diff --git a/bin/soongdbg b/bin/soongdbg index 024f0fd..a4c2398 100755 --- a/bin/soongdbg +++ b/bin/soongdbg
@@ -288,7 +288,7 @@ graph = load_graph() nodes = set() err = False - for id in sys.argv[3:]: + for id in args.module: root = graph.nodes.get(id) if not root: sys.stderr.write(f"error: Can't find root: {id}\n") @@ -330,7 +330,6 @@ print() - class QueryCommand: help = "Query details about modules"