mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-28 12:47:58 +03:00
13 lines
211 B
Bash
13 lines
211 B
Bash
![]() |
#!/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 TR2X_Installer -c Release -o out
|