From d248cfd42a30b1846eb7bbe9e48ac51fe9c274fd Mon Sep 17 00:00:00 2001 From: maxcleme Date: Tue, 14 Apr 2026 18:30:47 +0200 Subject: [PATCH] fix: typo glone -> clone MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Was it on purpose? 😅 Signed-off-by: maxcleme --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index 8f730e3..feea710 100644 --- a/dist/index.js +++ b/dist/index.js @@ -52524,7 +52524,7 @@ async function installTailscaleWindows(config, toolPath, fromCache = false) { async function installTailscaleMacOS(config, toolPath) { core.info("Building tailscale from src on macOS..."); // Clone the repo - await execSilent("glone tailscale repo", "git clone https://github.com/tailscale/tailscale.git tailscale"); + await execSilent("clone tailscale repo", "git clone https://github.com/tailscale/tailscale.git tailscale"); // Checkout the resolved version await execSilent("checkout resolved version", `git checkout v${config.resolvedVersion}`, [], { cwd: cmdTailscale, diff --git a/src/main.ts b/src/main.ts index f856021..dbc3d1c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -576,7 +576,7 @@ async function installTailscaleMacOS( // Clone the repo await execSilent( - "glone tailscale repo", + "clone tailscale repo", "git clone https://github.com/tailscale/tailscale.git tailscale", );