env file mismatch
All checks were successful
Build and Push Docker Image / build (push) Successful in 47s

This commit is contained in:
2025-10-20 16:30:22 -07:00
parent 14c0a4f522
commit 31921e5a40
2 changed files with 2 additions and 2 deletions

View File

@@ -42,7 +42,7 @@ run_backup() {
local attempt=1
while ((attempt <= RETRIES)); do
echo "[INFO] Backup attempt $attempt"
if /usr/local/bin/backup.sh >>"$LOG_FILE" 2>&1; then
if /usr/local/bin/backup.sh "$LOG_FILE"; then
echo "[SUCCESS] Backup completed"
return 0
else

View File

@@ -7,7 +7,7 @@ import json
cgitb.enable()
print("Content-Type: application/json\n")
ENV_FILE = "/config/web/backupbot.env"
ENV_FILE = "/config/backupbot.env"
def read_env():