Skip to content

Commit 22ab53a

Browse files
committed
fix script typo
1 parent 7d2d4c7 commit 22ab53a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/build_all.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ def build_examples(variant):
6565

6666
build_time = time.monotonic()
6767

68-
for variant in variants_dict:
69-
build_examples(variant)
68+
for var in variants_dict:
69+
build_examples(var)
7070

7171
print(build_separator)
7272
build_time = time.monotonic() - build_time
73-
print("Build Sumamary: {} \033[32msucceeded\033[0m, {} \033[31mfailed\033[0m and took {:.2f}s".format(success_count, fail_count, build_time))
73+
print("Build Summary: {} \033[32msucceeded\033[0m, {} \033[31mfailed\033[0m and took {:.2f}s".format(success_count, fail_count, build_time))
7474
print(build_separator)
7575

7676
sys.exit(exit_status)

0 commit comments

Comments
 (0)