fix typos

This commit is contained in:
saces 2026-03-05 07:04:11 +01:00
parent 5600b8056b
commit 0b10242c36
2 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ lib_list = [
# keep defaults in sync with setup.py
if (
os.getenv("PYGOMX_BUILD_MODE", "static") == "static"
and os.getenv("PYGOMX_OLM_FLAVOR", colm) == "colm"
and os.getenv("PYGOMX_OLM_FLAVOR", "colm") == "colm"
):
lib_list += ["olm"]

View file

@ -47,11 +47,11 @@ class CustomCommand(Command):
go_call = [
"go",
"build",
f"-buildmode=${build_mode_name}",
f"-buildmode={build_mode_name}",
"-tags",
",".join(go_tags),
"-o",
f"../pygomx-module/libmxclient${build_mode_ext}",
f"../pygomx-module/libmxclient{build_mode_ext}",
".",
]
subprocess.call(go_call, cwd="../libmxclient")