From 6f0c6e00e17d0b6bc0ec56660443ee0240acf541 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 10 Mar 2025 01:44:55 +0200 Subject: [PATCH] Condition "chdir" in script dir being local. (#434) 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")