From 96d7c7d61d5f1b24cac4a552634b04e21d7db2ad Mon Sep 17 00:00:00 2001 From: Stephen Chin Date: Mon, 11 May 2026 17:27:51 -0700 Subject: [PATCH] fix(hermesagent): replace ${APP} with literal name in msg lines MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolve to 'Hermes Agent' in all msg_info/msg_ok/msg_error calls per CrazyWolf13 review feedback — improves readability for users reading install output. --- ct/hermesagent.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ct/hermesagent.sh b/ct/hermesagent.sh index 0bd2bd77..49304eaa 100644 --- a/ct/hermesagent.sh +++ b/ct/hermesagent.sh @@ -25,7 +25,7 @@ function update_script() { check_container_resources if [[ ! -x /home/hermes/.local/bin/hermes ]]; then - msg_error "No ${APP} Installation Found!" + msg_error "No Hermes Agent Installation Found!" exit fi @@ -44,13 +44,13 @@ function update_script() { systemctl stop hermes-dashboard msg_ok "Stopped Services" - msg_info "Updating ${APP}" + msg_info "Updating Hermes Agent" $STD setsid --wait bash -c ' set -a; source /etc/default/hermes; set +a /home/hermes/.local/bin/hermes update --yes ' chown -R hermes:hermes /home/hermes - msg_ok "Updated ${APP}" + msg_ok "Updated Hermes Agent" msg_info "Starting Services" systemctl start hermes-dashboard @@ -64,7 +64,7 @@ build_container description msg_ok "Completed successfully!\n" -echo -e "${CREATING}${GN}${APP} setup has been successfully initialized!${CL}" +echo -e "${CREATING}${GN}Hermes Agent setup has been successfully initialized!${CL}" echo -e "${INFO}${YW} Configure your model provider and gateway server inside the container:${CL}" echo -e "${TAB}${BGN}su - hermes${CL}" echo -e "${TAB}${BGN}hermes setup${CL}"