mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 12:47:58 +03:00
12 lines
211 B
Bash
Executable file
12 lines
211 B
Bash
Executable file
#!/bin/bash
|
|
set -x
|
|
set -e
|
|
|
|
cd /app/tools/installer/
|
|
|
|
export DOTNET_CLI_HOME="/tmp/DOTNET_CLI_HOME"
|
|
|
|
shopt -s globstar
|
|
rm -rf **/bin **/obj **/out/*
|
|
dotnet restore
|
|
dotnet publish TR1X_Installer -c Release -o out
|