TRX/tools/shared/docker/installer/entrypoint.sh
2025-03-31 14:09:23 +02:00

18 lines
400 B
Bash
Executable file

#!/bin/bash
set -x
set -e
if [[ -z "$1" || ( "$1" != "1" && "$1" != "2" ) ]]; then
echo "Error: You must supply '1' or '2' as an argument to decide which game to build."
exit 1
fi
TR_VERSION=$1
cd /app/tools/installer/
export DOTNET_CLI_HOME="/tmp/DOTNET_CLI_HOME"
shopt -s globstar
rm -rf **/bin **/obj **/out/*
dotnet restore
dotnet publish TR${TR_VERSION}X_Installer -c Release -o out