You've already forked SpaghettiKart
mirror of
https://github.com/izzy2lost/SpaghettiKart.git
synced 2026-03-26 16:57:37 -07:00
e2c19fd4bc
* Create actions
6 lines
179 B
Python
6 lines
179 B
Python
import subprocess
|
|
|
|
bp = subprocess.Popen("tools/mingw64/w64devkit.exe", stdin=subprocess.PIPE)
|
|
bp.stdin.write(b"make assets && make -j && exit\n")
|
|
bp.stdin.close()
|
|
exit(bp.wait()) |