From 3a4a6af942c98ab77f3ba181c3c2ed7850536ef1 Mon Sep 17 00:00:00 2001 From: jay Date: Sat, 16 May 2026 02:58:18 +0200 Subject: [PATCH] docs: fix trailing slash in pair-qr curl command --- docs/BUILD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/BUILD.md b/docs/BUILD.md index 0d02ee2..d2bce3a 100644 --- a/docs/BUILD.md +++ b/docs/BUILD.md @@ -81,7 +81,7 @@ curl -s "http:///pair-qr?token=" Or one-liner (reads token from tmux pane automatically): ```bash TOKEN=$(tmux capture-pane -t pi-sidecar -p | grep -o 'token=[^ ]*' | head -1 | cut -d= -f2) && \ -SIDECAR=$(tmux capture-pane -t pi-sidecar -p | grep -o 'http://[^ ]*' | head -1 | sed 's/?.*//') && \ +SIDECAR=$(tmux capture-pane -t pi-sidecar -p | grep -o 'http://[^ ]*' | head -1 | sed 's/?.*//; s|/$||') && \ curl -s "$SIDECAR/pair-qr?token=$TOKEN" ```