From b23660d8974e8260f64ee5b77519f5fe00cd737f Mon Sep 17 00:00:00 2001 From: "Stanko K.R." Date: Thu, 19 Feb 2026 10:34:03 +0100 Subject: [PATCH] Fix --tailscale not printing hostname --- bin/dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/dev b/bin/dev index 24923069d..4c11aa3b0 100755 --- a/bin/dev +++ b/bin/dev @@ -41,7 +41,7 @@ if [ "$USE_TAILSCALE" = "1" ]; then exit 1 fi - TS_STATUS=$(tailscale status --self --json 2>&1) + TS_STATUS=$(tailscale status --self --json 2>/dev/null) if [ $? -ne 0 ]; then echo "Error: tailscale not logged in" >&2 exit 1