From 38caed06d10c650387423e56d3e6556a6823cb71 Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Fri, 14 Nov 2025 17:26:52 -0500 Subject: [PATCH] Fix incorrect install script path in workflow --- .github/workflows/npm-publish-cli.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish-cli.yml b/.github/workflows/npm-publish-cli.yml index 108e689c..5ab13168 100644 --- a/.github/workflows/npm-publish-cli.yml +++ b/.github/workflows/npm-publish-cli.yml @@ -139,10 +139,10 @@ jobs: ### Using install script (recommended) ```bash # For Linux/macOS - curl -fsSL https://cua.ai/install.sh | sh + curl -fsSL https://cua.ai/cli/install.sh | sh # For Windows (PowerShell) - irm https://cua.ai/install.ps1 | iex + irm https://cua.ai/cli/install.ps1 | iex ``` ### Using npm/bun