mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-19 03:33:48 +00:00
8 lines
163 B
Python
8 lines
163 B
Python
|
|
#!/usr/bin/env python3
|
||
|
|
import os
|
||
|
|
import subprocess
|
||
|
|
|
||
|
|
|
||
|
|
cmd = "pyinstaller ./bootstrap.py --name ifcclash --onefile --clean"
|
||
|
|
subprocess.check_output(cmd, shell=True)
|