From 50d30ae0453ae766579c7ba975fb71da46cb8b2f Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Wed, 12 Jan 2022 09:06:47 +1100 Subject: [PATCH] autotest: reformat things-to-copy list --- Tools/autotest/autotest.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index ce62f81b6d..639c75d99a 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -117,8 +117,14 @@ def build_binaries(): # copy the script (and various libraries used by the script) as it # changes git branch, which can change the script while running - for thing in ["build_binaries.py", "generate_manifest.py", "gen_stable.py", "build_binaries_history.py", - "board_list.py", "build_sizes.py"]: + for thing in [ + "board_list.py", + "build_binaries_history.py", + "build_binaries.py", + "build_sizes.py", + "generate_manifest.py", + "gen_stable.py", + ]: orig = util.reltopdir('Tools/scripts/%s' % thing) copy = util.reltopdir('./%s' % thing) shutil.copy2(orig, copy)