MCPcopy Create free account
hub / github.com/IfcOpenShell/IfcOpenShell / run

Method run

pyodide/pack_wheel.py:142–147  ·  view source on GitHub ↗
(
        cmd: list[str],
        cwd: Path | None = None,
    )

Source from the content-addressed store, hash-verified

140class Tools:
141 @staticmethod
142 def run(
143 cmd: list[str],
144 cwd: Path | None = None,
145 ) -> None:
146 print(f"$ {' '.join(cmd)}")
147 subprocess.check_call(cmd, cwd=cwd)
148
149 @staticmethod
150 def create_symlink(dst: Path, src: Path) -> None:

Callers 3

build_dependencyFunction · 0.45
buildFunction · 0.45
mainFunction · 0.45

Calls 2

printFunction · 0.85
joinMethod · 0.45

Tested by

no test coverage detected