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

Condition "chdir" in script dir being local.

So "python3 scripts/linux-install.py" as documented in README will work.
This commit is contained in:
Shlomi Fish 2025-03-09 15:32:00 +02:00
parent 512d3ea466
commit 32d8b9d6f2

View file

@ -19,6 +19,9 @@ def main():
def _make_test(make_exe):
subprocess.check_call([make_exe, "test", "rules"])
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: