readme: AI authorship disclosure woven into intro

This commit is contained in:
Damocles 2026-05-01 15:34:34 +02:00
parent 854daf797c
commit b9e570911e
3 changed files with 26 additions and 5 deletions

View file

@ -9,10 +9,8 @@ TARGET=/persist/damocles-lab
STATE="$TARGET/state"
echo "==> checking for running daemon in lab"
if RUNNING=$(~/lab.sh "pgrep -af damocles-daemon" 2>/dev/null); then
echo "ERROR: daemon is running in lab - won't overwrite live binary." >&2
echo "$RUNNING" >&2
echo "Stop it first: ~/lab.sh \"pkill damocles-daemon\"" >&2
if ~/lab.sh "pgrep -x damocles-daemon" >/dev/null 2>&1; then
echo "ERROR: daemon is running in lab - stop it (ctrl+c) and re-run." >&2
exit 1
fi