diff options
| author | hathach <[email protected]> | 2020-04-03 12:39:57 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2020-04-03 12:39:57 +0700 |
| commit | 0814bd99487c67494fe2c8321dba53e3e8529ff2 (patch) | |
| tree | 3f275b84b023f83544bb2ec72e3624e93ffc0933 /tools | |
| parent | 748cc88769ffd2039fcb0f4db9bb2cb4bc84965f (diff) | |
minor clean up
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/build_all.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/build_all.py b/tools/build_all.py index a5e29a4ae..325e671fd 100644 --- a/tools/build_all.py +++ b/tools/build_all.py @@ -11,6 +11,9 @@ exit_status = 0 total_time = time.monotonic() +build_format = '| {:20} | {:30} | {:9} | {:7} | {:6} | {:6} |' +build_separator = '-' * 97 + # 1st Argument is Example, build all examples if not existed all_examples = [] if len(sys.argv) > 1: @@ -66,8 +69,6 @@ def skip_example(example, board): return 0 -build_format = '| {:20} | {:30} | {:9} | {:5} | {:6} | {:6} |' -build_separator = '-' * 95 print(build_separator) print(build_format.format('Example', 'Board', 'Result', 'Time', 'Flash', 'SRAM')) |
