Merge "Fix soongdbg deps" into main

This commit is contained in:
Treehugger Robot
2024-02-10 01:57:29 +00:00
committed by Gerrit Code Review

View File

@@ -288,7 +288,7 @@ class DepsCommand:
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 @@ class JsonCommand:
print()
class QueryCommand:
help = "Query details about modules"