Skip to content

Commit 33e7637

Browse files
committed
Fix host Tailscale detection on case-sensitive filesystems
This commit updates the path to the Tailscale binary on macOS. I erroneously had the binary name lowercased as `tailscale`, but it's actually `Tailscale`. On case-sensitive APFS filesystems, this caused the detection and subsequent host commands to fail. Fixes #34
1 parent 9f6dca9 commit 33e7637

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ui/src/tailscale.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ const windowsTailscalePath = async () => {
434434
return `"${output.stdout.trim()}"`
435435
}
436436
const macOSTailscalePath =
437-
"/Applications/Tailscale.app/Contents/MacOS/tailscale"
437+
"/Applications/Tailscale.app/Contents/MacOS/Tailscale"
438438
const linuxTailscalePath = "/usr/bin/env tailscale"
439439

440440
async function isTailscaleOnHost(): Promise<boolean> {

0 commit comments

Comments
 (0)