This repository has been archived on 2023-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
backup-manager/do-backup.sh

6 lines
146 B
Bash
Raw Normal View History

cwd="$(pwd)"
export DOTNET_CLI_TELEMETRY_OPTOUT=1
cd "$(dirname "$0")"
2021-07-30 02:10:21 +00:00
dotnet run --project BackupManager -c Release -f net5.0 -- -cron
2021-07-30 02:14:36 +00:00
cd "$cwd"