Files
IfcOpenShell/src/ifcclash/make.py
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
163 B
Python
Raw Normal View History

#!/usr/bin/env python3
import os
import subprocess
cmd = "pyinstaller ./bootstrap.py --name ifcclash --onefile --clean"
subprocess.check_output(cmd, shell=True)