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", );