labwc/scripts/ci/ci_autostart.sh

14 lines
206 B
Bash
Raw Normal View History

2024-03-13 15:26:16 +01:00
#!/usr/bin/env bash
if test -z "$LABWC_PID"; then
echo "LABWC_PID not set" >&2
exit 1
fi
echo "Running with pid $LABWC_PID"
# Could add runtime tests here
echo "killing labwc"
kill -s TERM $LABWC_PID