mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 08:21:02 +02:00
a9767e5df1
Expose a non-blocking TLS socket API to mods (WSS clients) without bundling any game-specific multiworld content. Co-authored-by: Cursor <cursoragent@cursor.com>
8 lines
412 B
Bash
8 lines
412 B
Bash
#!/usr/bin/env bash
|
|
# Windows ships a python3.exe under WindowsApps that exists purely to advertise
|
|
# the Microsoft Store, so `command -v python3` succeeds and running it fails.
|
|
# build_android.sh calls python3 three times (the Yellow manifest check, the
|
|
# gradle.properties rewrite and the manifest permission trim), and this puts a
|
|
# real interpreter behind that name for the length of the build.
|
|
exec py "$@"
|