feat: print selected build identifiers in preamble before build loop (#2785)
* Initial plan * Print build identifier list in preamble before build loop Co-authored-by: henryiii <4616906+henryiii@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: henryiii <4616906+henryiii@users.noreply.github.com>
This commit is contained in:
co-authored by
henryiii
copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
parent
cb1fdd0316
commit
817878a5f9
@@ -432,6 +432,10 @@ def print_preamble(platform: str, options: Options, identifiers: Sequence[str])
|
|||||||
msg = "\n".join(error_list)
|
msg = "\n".join(error_list)
|
||||||
raise errors.ConfigurationError(msg)
|
raise errors.ConfigurationError(msg)
|
||||||
|
|
||||||
|
n = len(identifiers)
|
||||||
|
print(f"{n} build{'s' if n != 1 else ''} selected:")
|
||||||
|
print(", ".join(identifiers))
|
||||||
|
print()
|
||||||
print("Here we go!\n")
|
print("Here we go!\n")
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user