From 4a155824af4225517a81fc0a001f262f74e79c83 Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Tue, 15 Sep 2026 13:55:19 +0200 Subject: docs: fix the runtime dir collision in the check script The daemon binary was built at $tmp/notifyd, the same name RuntimeDir() gives under XDG_RUNTIME_DIR, so the two collided. The runtime dir moves to $tmp/run, which is what the shipped script does. --- docs/superpowers/plans/2026-09-15-notifyd.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'docs/superpowers') diff --git a/docs/superpowers/plans/2026-09-15-notifyd.md b/docs/superpowers/plans/2026-09-15-notifyd.md index fdc3967..945d856 100644 --- a/docs/superpowers/plans/2026-09-15-notifyd.md +++ b/docs/superpowers/plans/2026-09-15-notifyd.md @@ -1572,7 +1572,8 @@ check() { go build -o "$tmp/notifyd" "$here/cmd/notifyd" || exit 1 go build -o "$tmp/notifyctl" "$here/cmd/notifyctl" || exit 1 -export XDG_RUNTIME_DIR="$tmp" +mkdir -p "$tmp/run" +export XDG_RUNTIME_DIR="$tmp/run" export PATH="$tmp:$PATH" dbus-run-session -- bash -c ' -- cgit v1.2.3