From a43ca27d2fe36f63ca0cf7c607868b33517a8d1e Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner <73236783+michelroegl-brunner@users.noreply.github.com> Date: Tue, 2 Jun 2026 09:04:47 +0200 Subject: [PATCH] infisical: fix update abort due to creds field mismatch (#14868) (#14870) Co-authored-by: Cursor --- ct/infisical.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/infisical.sh b/ct/infisical.sh index 8d69ef8c3..926a6581a 100644 --- a/ct/infisical.sh +++ b/ct/infisical.sh @@ -35,7 +35,7 @@ function update_script() { msg_info "Creating backup" [[ -f /opt/infisical_backup.sql ]] && rm -f /opt/infisical_backup.sql - DB_PASS=$(grep -Po '(?<=^Database Password:\s).*' ~/infisical.creds | head -n1) + DB_PASS=$(grep -Po '(?<=^Password:\s).*' ~/infisical.creds | head -n1) PGPASSWORD=$DB_PASS pg_dump -U infisical -h localhost -d infisical_db > /opt/infisical_backup.sql msg_ok "Created backup"