01/01OS/01OS/clients/start.sh

9 lines
163 B
Bash

DEVICE=$(uname -n)
if [[ "$DEVICE" == "rpi" ]]; then
cd 01OS
python -m 01OS.clients.rpi.device
else
cd 01OS
python -m 01OS.clients.macos.device
fi