Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wtdcode committed Dec 21, 2024
1 parent fd62018 commit f2ea1ca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build_mdbx.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@

def ensure_dependency():
subprocess.check_call(["cmake", "--version"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
subprocess.check_call(["ninja", "--version"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
if sys.platform == "win32" or sys.platform == "darwin":
subprocess.check_call(["ninja", "--version"], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)

def build(setup_kws: dict):
ensure_dependency()
Expand Down

0 comments on commit f2ea1ca

Please sign in to comment.