Skip to content

Commit d86bec9

Browse files
committed
fix(mcb): timestamp disabled for MCB as breaks update check
1 parent 4c9223c commit d86bec9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lgsm/modules/command_start.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ fn_start_tmux() {
8080

8181
# Enable console logging.
8282
if [ "${consolelogging}" == "on" ] || [ -z "${consolelogging}" ]; then
83-
if [ "${logtimestamp}" == "on" ]; then
83+
# timestamp will break mcb update check.
84+
if [ "${logtimestamp}" == "on" ] && [ "${shortname}" != "mcb" ]; then
8485
tmux -L "${socketname}" pipe-pane -o -t "${sessionname}" "exec bash -c \"cat | $addtimestamp\" >> '${consolelog}'"
8586
else
8687
tmux -L "${socketname}" pipe-pane -o -t "${sessionname}" "exec cat >> '${consolelog}'"

0 commit comments

Comments
 (0)