1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Attempted to correct errors with Linux install script.

This commit is contained in:
Joe R 2022-02-12 11:53:41 -05:00
parent 1031f3f562
commit 4adb91dffd

View file

@ -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"):