From 6850e7b477846505eb85ddf50c6b52d888b6bc2d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Thu, 8 Jan 2026 05:21:15 +0000 Subject: [PATCH] fix: align tailscale formatting --- src/infra/tailscale.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/infra/tailscale.ts b/src/infra/tailscale.ts index 1dc2ab2e0..07e34b82e 100644 --- a/src/infra/tailscale.ts +++ b/src/infra/tailscale.ts @@ -7,9 +7,9 @@ import { shouldLogVerbose, warn, } from "../globals.js"; -import { colorize, isRich, theme } from "../terminal/theme.js"; import { runExec } from "../process/exec.js"; import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; +import { colorize, isRich, theme } from "../terminal/theme.js"; import { ensureBinary } from "./binaries.js"; export async function getTailnetHostname(exec: typeof runExec = runExec) { @@ -182,14 +182,10 @@ export async function ensureFunnel( if (shouldLogVerbose()) { const rich = isRich(); if (stdout.trim()) { - runtime.error( - colorize(rich, theme.muted, `stdout: ${stdout.trim()}`), - ); + runtime.error(colorize(rich, theme.muted, `stdout: ${stdout.trim()}`)); } if (stderr.trim()) { - runtime.error( - colorize(rich, theme.muted, `stderr: ${stderr.trim()}`), - ); + runtime.error(colorize(rich, theme.muted, `stderr: ${stderr.trim()}`)); } runtime.error(err as Error); }