graph: allow multiple target arguments
This commit is contained in:
parent
27743d9e6d
commit
25e57f272c
4
graph.py
4
graph.py
@ -42,14 +42,14 @@ if __name__ == '__main__':
|
||||
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument('--data', type=str, default=recipe_root)
|
||||
parser.add_argument('--target', type=str, required=False)
|
||||
parser.add_argument('--target', type=str, nargs="*")
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
recipes = satisfactory.Cookbook(args.data)
|
||||
|
||||
if args.target:
|
||||
graph_one(recipes, args.target)
|
||||
graph(recipes, args.target)
|
||||
else:
|
||||
graph(recipes, recipes.components())
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user