From 1f3946d6ff394cd1f68828de83ab1638c81574ca Mon Sep 17 00:00:00 2001 From: Mats Wichmann Date: Sat, 18 Apr 2020 16:22:44 -0600 Subject: Fix one more instance of moved scons.py [ci skip] SConsExamples still using src/script Signed-off-by: Mats Wichmann --- bin/SConsExamples.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/SConsExamples.py b/bin/SConsExamples.py index ff72a27..05bd02e 100644 --- a/bin/SConsExamples.py +++ b/bin/SConsExamples.py @@ -415,9 +415,9 @@ def exampleNamesAreUnique(dpath): sys.path.append(os.path.join(os.getcwd(), 'testing/framework')) sys.path.append(os.path.join(os.getcwd(), 'build', 'testing/framework')) -scons_py = os.path.join('bootstrap', 'src', 'script', 'scons.py') +scons_py = os.path.join('bootstrap', 'scripts', 'scons.py') if not os.path.exists(scons_py): - scons_py = os.path.join('src', 'script', 'scons.py') + scons_py = os.path.join('scripts', 'scons.py') scons_py = os.path.join(os.getcwd(), scons_py) @@ -748,8 +748,7 @@ def command_ls(args, c, test, values): for a in args: l.extend(ls(test.workpath('WORK', a))) return l - else: - return ls(test.workpath('WORK')) + return ls(test.workpath('WORK')) def command_sleep(args, c, test, values): time.sleep(int(args[0])) -- cgit v0.12