gtk3 github actions fix

This commit is contained in:
2026-02-01 16:04:16 -07:00
parent b1e7155c6d
commit 56e1c402f6

View File

@@ -122,10 +122,10 @@ jobs:
if ((Test-Path $genExe) -and (-not (Test-Path $genPy))) {
@'
import os, subprocess, sys
exe = os.path.join(os.path.dirname(__file__), "glib-genmarshal.exe")
sys.exit(subprocess.call([exe] + sys.argv[1:]))
'@ | Set-Content -Path $genPy -Encoding ASCII
import os, subprocess, sys
exe = os.path.join(os.path.dirname(__file__), "glib-genmarshal.exe")
sys.exit(subprocess.call([exe] + sys.argv[1:]))
'@ | Set-Content -Path $genPy -Encoding ASCII
}
# -----------------------------