Start client in the foreground so that its PID gets properly tracked

This commit is contained in:
Tom Chapin 2024-02-12 18:32:28 -08:00
parent f18bfb73c1
commit e5236a9349
1 changed files with 2 additions and 2 deletions

View File

@ -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