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:
parent
1031f3f562
commit
4adb91dffd
1 changed files with 4 additions and 1 deletions
|
@ -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"):
|
||||
|
|
Loading…
Add table
Reference in a new issue