1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-03-12 04:07:01 -04:00

Condition "chdir" in script dir being local. (#434)

So "python3 scripts/linux-install.py" as documented in README will work.
This commit is contained in:
Shlomi Fish 2025-03-10 01:44:55 +02:00 committed by GitHub
parent 512d3ea466
commit 6f0c6e00e1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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