From 53a622200710a17ed6843893a431752b8dd3bfc0 Mon Sep 17 00:00:00 2001 From: Mitchell Syer Date: Mon, 19 Feb 2024 11:26:43 -0500 Subject: [PATCH] Fix BackupTime attempt 2 --- scripts/startup_script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/startup_script.sh b/scripts/startup_script.sh index 9528492..d6d97f4 100755 --- a/scripts/startup_script.sh +++ b/scripts/startup_script.sh @@ -62,7 +62,7 @@ sed -i -r "s/server.debugLogsEnabled = (.*)/server.debugLogsEnabled = ${DEBUG:-\ sed -i -r "s/server.gqlDebugLogsEnabled = (.*)/server.gqlDebugLogsEnabled = ${GQL_DEBUG:-\1}/" /home/suwayomi/.local/share/Tachidesk/server.conf # backup -sed -i -r "s/server.backupTime = (.*)|server.backupTime = ${BACKUP_TIME:-\1}|" /home/suwayomi/.local/share/Tachidesk/server.conf +sed -i -r "s|server.backupTime = \"(.*)\"|server.backupTime = ${BACKUP_TIME:-\1}\"|" /home/suwayomi/.local/share/Tachidesk/server.conf sed -i -r "s/server.backupInterval = (.*)/server.backupInterval = ${BACKUP_INTERVAL:-\1}/" /home/suwayomi/.local/share/Tachidesk/server.conf sed -i -r "s/server.backupTTL = (.*)/server.backupTTL = ${BACKUP_TTL:-\1}/" /home/suwayomi/.local/share/Tachidesk/server.conf