From 0cbc612ef614c505faff73b9dc469d07fb9743b4 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 4 May 2019 11:20:37 +1000 Subject: [PATCH] autotest: fixed copy of gen_stable.py --- Tools/autotest/autotest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Tools/autotest/autotest.py b/Tools/autotest/autotest.py index 0d319aea1f..045ec7213c 100755 --- a/Tools/autotest/autotest.py +++ b/Tools/autotest/autotest.py @@ -111,6 +111,11 @@ def build_binaries(): copy_gm = util.reltopdir('./generate_manifest.py') shutil.copy2(orig_gm, copy_gm) + # and gen_stable.py + orig_gs = util.reltopdir('Tools/scripts/gen_stable.py') + copy_gs = util.reltopdir('./gen_stable.py') + shutil.copy2(orig_gs, copy_gs) + if util.run_cmd(copy, directory=util.reltopdir('.')) != 0: print("Failed build_binaries.py") return False