TRX/tools/tr1/docker/game-linux/entrypoint.sh

17 lines
337 B
Bash
Raw Normal View History

2024-03-25 11:09:05 +01:00
#!/usr/bin/env python3
from pathlib import Path
2023-09-20 14:00:42 +02:00
2024-10-02 10:23:23 +02:00
from shared.cli.game_docker_entrypoint import run_script
2023-09-20 14:00:42 +02:00
run_script(
2024-10-02 10:23:23 +02:00
version=1,
platform="linux",
compile_args=[],
release_zip_files=[
2024-10-02 10:23:23 +02:00
(Path("/app/build/tr1/linux/TR1X"), "TR1X"),
],
compressable_exes=[
2024-10-02 10:23:23 +02:00
Path("/app/build/tr1/linux/TR1X"),
],
)