()
| 58 | GITLAB_PRECACHE_HEADER_START = "// __GITLAB_PRECACHE__" |
| 59 | |
| 60 | def get_godot_platform(): |
| 61 | if sys.platform.startswith("win"): |
| 62 | return "windows" |
| 63 | elif sys.platform.startswith("linux"): |
| 64 | return "linux" |
| 65 | elif sys.platform.startswith("darwin"): |
| 66 | return "macos" |
| 67 | else: |
| 68 | raise ValueError(f"Unsupported platform: {sys.platform}") |
| 69 | |
| 70 | def get_godot_arch(): |
| 71 | # if x86_64, return "x86_64" |