Skip to content

Commit 06550d8

Browse files
author
Jeevan Revaneppa Hirethanad
committed
removw unwanted print statement in genarte_build.py
1 parent 1c74b6d commit 06550d8

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/scripts/generate_matrix.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,10 @@ def main():
3232

3333
if not rows:
3434
# Avoid empty matrix which makes Actions error out
35-
rows = [{"app":"noop","board":"noop"}]
35+
rows = {"app":"noop","board":"noop"}
3636

3737
matrix = {"include": rows}
3838
print(json.dumps(matrix, indent=2))
39-
40-
print(f"Generated {len(rows)} matrix rows from {TEMPLATES_XML}")
4139

4240
if __name__ == "__main__":
4341
main()

0 commit comments

Comments
 (0)