diff options
| author | Danilo M. <danix@danix.xyz> | 2026-09-15 13:55:19 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-09-15 13:55:19 +0200 |
| commit | 4a155824af4225517a81fc0a001f262f74e79c83 (patch) | |
| tree | 13d1cb31392c633c7600f2bb8d1602845773c515 /docs | |
| parent | 473c9633073ca74d9266f7050bbe424bebd1280f (diff) | |
| download | quickshell-4a155824af4225517a81fc0a001f262f74e79c83.tar.gz quickshell-4a155824af4225517a81fc0a001f262f74e79c83.zip | |
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.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/superpowers/plans/2026-09-15-notifyd.md | 3 |
1 files changed, 2 insertions, 1 deletions
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 ' |
