mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-15 17:51:27 +00:00
Reduce ignore list for apollo_tree
This commit is contained in:
parent
02b4192be5
commit
fe376df854
@ -274,7 +274,7 @@ async def run_apollo_tree(
|
|||||||
manual: bool,
|
manual: bool,
|
||||||
auto_scan: bool,
|
auto_scan: bool,
|
||||||
path: str,
|
path: str,
|
||||||
ignore: list,
|
ignore: list[str],
|
||||||
product_name: str,
|
product_name: str,
|
||||||
):
|
):
|
||||||
if manual:
|
if manual:
|
||||||
@ -374,7 +374,7 @@ if __name__ == "__main__":
|
|||||||
p_args.manual,
|
p_args.manual,
|
||||||
p_args.auto_scan,
|
p_args.auto_scan,
|
||||||
p_args.path,
|
p_args.path,
|
||||||
p_args.ignore,
|
[y for x in p_args.ignore for y in x],
|
||||||
p_args.product_name,
|
p_args.product_name,
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user