From 2b194cae413e988c9446df16915962922e1951e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20Bara=C3=BAna?= Date: Tue, 18 Feb 2025 10:57:19 -0300 Subject: [PATCH] Fix typo --- docs/authentication/tailscale.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/authentication/tailscale.md b/docs/authentication/tailscale.md index c5133acac..ac130b193 100644 --- a/docs/authentication/tailscale.md +++ b/docs/authentication/tailscale.md @@ -29,9 +29,9 @@ On macOS, Tailscale uses a password-protected TCP port instead of a unix socket. ```bash #!/bin/bash -# This is script is adapted from https://github.com/tailscale/tailscale/blob/v1.80.2/safesocket/safesocket_darwin.go#L69-L160 +# This script is adapted from https://github.com/tailscale/tailscale/blob/v1.80.2/safesocket/safesocket_darwin.go#L69-L160 -# When Tailscale was installed via Mac App Store. +# When Tailscale was installed via Mac App Store port_and_token=$(lsof -n -a -c IPNExtension -F | grep -o "sameuserproof-[0-9]*-[a-f0-9]*" | head -1) if [ ! -z "$port_and_token" ]; then port=$(echo "$port_and_token" | cut -d'-' -f2)