6 lines
104 B
Bash
Executable File
6 lines
104 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
echo "==> [gitea] Cleaning up SQLite backup"
|
|
rm -f /mnt/staging/gitea.db
|