c0d442364a
* build: explicitly run scripts with python3 * chore: update patches Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com>
18 lines
458 B
Python
Executable file
18 lines
458 B
Python
Executable file
#!/usr/bin/env python3
|
|
import os
|
|
import subprocess
|
|
import sys
|
|
|
|
source = sys.argv[1]
|
|
dest = sys.argv[2]
|
|
|
|
# Ensure any existing framework is removed
|
|
subprocess.check_output(["rm", "-rf", dest])
|
|
|
|
subprocess.check_output(["cp", "-a", source, dest])
|
|
|
|
# Strip headers, we do not need to ship them
|
|
subprocess.check_output(["rm", "-r", os.path.join(dest, "Headers")])
|
|
subprocess.check_output(
|
|
["rm", "-r", os.path.join(dest, "Versions", "Current", "Headers")]
|
|
)
|