From d2055aeb5089d179944725275fa0954db347858b Mon Sep 17 00:00:00 2001 From: eytb2 Date: Wed, 29 Apr 2026 17:40:33 +0800 Subject: [PATCH] Update start-dev.sh frontend fails to start on Linux due to sed -l incompatibility --- scripts/start-dev.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/start-dev.sh b/scripts/start-dev.sh index 1b28170c..017a82de 100755 --- a/scripts/start-dev.sh +++ b/scripts/start-dev.sh @@ -80,7 +80,7 @@ start_with_logs() { shift 3 "$@" > >( - tee -a "$log_file" | sed -l "s/^/[$tag] /" | tee -a "$COMBINED_LOG" + tee -a "$log_file" | sed -u "s/^/[$tag] /" | tee -a "$COMBINED_LOG" ) 2>&1 & printf -v "$pid_var" '%s' "$!" }