From 4adb91dffde721de6c3cc7088caa39c1a99ab32c Mon Sep 17 00:00:00 2001 From: Joe R Date: Sat, 12 Feb 2022 11:53:41 -0500 Subject: [PATCH] Attempted to correct errors with Linux install script. --- 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 99558916..3a661929 100755 --- a/scripts/linux-install.py +++ b/scripts/linux-install.py @@ -19,9 +19,12 @@ def main(): def _make_test(make_exe): subprocess.check_call([make_exe, "test", "rules"]) + if os.getCwd().endswith("scripts"): + os.chdir('../') + try: _make_test("gmake") - except subprocess.CalledProcessError: + except (subprocess.CalledProcessError, FileNotFoundError): _make_test("make") if not os.path.exists("./images"):