From be8d55fb8392fb00028dc369df4e1a40bea20c11 Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Sat, 2 May 2026 12:21:18 -0700 Subject: [PATCH] fix(hermesagent): pass --yes to hermes update to avoid interactive prompt hermes update prompts "Restore local changes now? [Y/n]" when run in a TTY context. --yes skips all interactive prompts. --- ct/hermesagent.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ct/hermesagent.sh b/ct/hermesagent.sh index 03045797..b9f2b5b0 100644 --- a/ct/hermesagent.sh +++ b/ct/hermesagent.sh @@ -38,7 +38,7 @@ function update_script() { $STD env \ HOME=/home/hermes \ HERMES_HOME=/home/hermes/.hermes \ - /home/hermes/.local/bin/hermes update + /home/hermes/.local/bin/hermes update --yes chown -R hermes:hermes /home/hermes msg_ok "Updated ${APP}"