flashii
/
backup-manager
Archived
1
0
Fork 0
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

8 lines
151 B
Bash
Raw Permalink Normal View History

2023-04-12 02:38:05 +00:00
cwd="$(pwd)"
cd "$(dirname "$0")"
export DOTNET_CLI_TELEMETRY_OPTOUT=1
dotnet run --project BackupManager -c Release -f net6.0 -- -cron
2023-04-12 02:38:05 +00:00
cd "$cwd"