From 5ede4495f978cf32e5dc9d1a1fefa7025d09a042 Mon Sep 17 00:00:00 2001 From: Chris Date: Thu, 11 Jun 2026 08:00:34 -0400 Subject: [PATCH] Jotty: Fix wrong path test in config restore (#15038) --- ct/jotty.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/jotty.sh b/ct/jotty.sh index 851d14d3b..74267afda 100644 --- a/ct/jotty.sh +++ b/ct/jotty.sh @@ -47,7 +47,7 @@ function update_script() { msg_info "Restoring configuration & data" mv /opt/app.env /opt/jotty/.env [[ -d /opt/data ]] && mv /opt/data /opt/jotty/data - [[ -d /opt/jotty/config ]] && cp -a /opt/config/* /opt/jotty/config && rm -rf /opt/config + [[ -d /opt/config ]] && cp -a /opt/config/* /opt/jotty/config && rm -rf /opt/config msg_ok "Restored configuration & data" msg_info "Starting Service"