From 78bc4d34c5201d6b55b1537cf27a4437408239f2 Mon Sep 17 00:00:00 2001 From: Ryan Hughes Date: Sun, 16 Nov 2025 22:32:04 -0500 Subject: [PATCH] Disown so we don't see it --- install/helpers/logging.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/install/helpers/logging.sh b/install/helpers/logging.sh index 88765da5..460e819b 100644 --- a/install/helpers/logging.sh +++ b/install/helpers/logging.sh @@ -67,14 +67,15 @@ stop_log_output() { local ANSI_SHOW_CURSOR="\033[?25h" if [ -n "${monitor_pid:-}" ]; then + # Disown the process to prevent "Killed" message + disown $monitor_pid 2>/dev/null || true + # Kill child processes first (tail -F) with SIGKILL pkill -9 -P $monitor_pid 2>/dev/null || true # Kill the monitor process with SIGKILL for immediate termination kill -9 $monitor_pid 2>/dev/null || true - # Don't wait - SIGKILL is immediate - # Clean up temp buffer file rm -f /tmp/omarchy-log-buffer.txt /tmp/omarchy-log-buffer.tmp 2>/dev/null || true