From e5236a934904ff4ee63803505d1f43b5efb4df66 Mon Sep 17 00:00:00 2001 From: Tom Chapin Date: Mon, 12 Feb 2024 18:32:28 -0800 Subject: [PATCH] Start client in the foreground so that its PID gets properly tracked --- 01OS/01OS/clients/start.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/01OS/01OS/clients/start.sh b/01OS/01OS/clients/start.sh index 8e8edc9..844e6a0 100644 --- a/01OS/01OS/clients/start.sh +++ b/01OS/01OS/clients/start.sh @@ -1,8 +1,8 @@ DEVICE=$(uname -n) if [[ "$DEVICE" == "rpi" ]]; then cd 01OS - python -m 01OS.clients.rpi.device & + python -m 01OS.clients.rpi.device else cd 01OS - python -m 01OS.clients.macos.device & + python -m 01OS.clients.macos.device fi