From 32d8b9d6f2c5faa9d1e0565b0130d424f2976697 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 9 Mar 2025 15:32:00 +0200 Subject: [PATCH] Condition "chdir" in script dir being local. So "python3 scripts/linux-install.py" as documented in README will work. --- scripts/linux-install.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/linux-install.py b/scripts/linux-install.py index 7fcea101..46caa389 100755 --- a/scripts/linux-install.py +++ b/scripts/linux-install.py @@ -19,7 +19,10 @@ def main(): def _make_test(make_exe): subprocess.check_call([make_exe, "test", "rules"]) - os.chdir('../') + if (os.path.exists("./linux-install.py") + and not (os.path.exists("./scripts/linux-install.py")) + and not (os.path.exists("Makefile"))): + os.chdir('../') try: _make_test("gmake")