Skip to content

Commit

Permalink
make is not always available on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jpfleischer committed Jan 14, 2024
1 parent 9e9c759 commit b806a0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cloudmesh/installer/installer.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,11 +410,11 @@ def install(repos, dev=False, protocol="https"):
if dev:
banner(f"dev install -> {repo}")

Console.info(f"make pip: {repo}")
Console.info(f"pip install -e . --config-settings editable_mode=strict: {repo}")
print()

os.chdir(repo)
os.system("make pip")
os.system("pip install -e . --config-settings editable_mode=strict")
os.chdir("../")

else:
Expand Down

0 comments on commit b806a0c

Please sign in to comment.