mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -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:
parent
512d3ea466
commit
6f0c6e00e1
1 changed files with 4 additions and 1 deletions
|
@ -19,7 +19,10 @@ def main():
|
||||||
def _make_test(make_exe):
|
def _make_test(make_exe):
|
||||||
subprocess.check_call([make_exe, "test", "rules"])
|
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:
|
try:
|
||||||
_make_test("gmake")
|
_make_test("gmake")
|
||||||
|
|
Loading…
Add table
Reference in a new issue