5 lines
148 B
Bash
Executable file
5 lines
148 B
Bash
Executable file
cwd="$(pwd)"
|
|
export DOTNET_CLI_TELEMETRY_OPTOUT=1
|
|
cd "$(dirname "$0")"
|
|
dotnet run --project BackupManager -c Release -f net5.0 -- -cron
|
|
cd "$(cwd)"
|