From 83ee7a55dc9a7fc8296a5c94561579dc63b527cf Mon Sep 17 00:00:00 2001 From: Town Hall Date: Fri, 1 May 2026 11:11:16 -0700 Subject: [PATCH] docs(cli): fix install URL on Getting Started page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CLI install command pointed at app.superset.sh/install.sh, which is behind auth and 307s to the sign-in page — piping that into sh fails. The installer is served from the marketing site at superset.sh/cli/install.sh (matches the in-script usage hint and the Homebrew tap path). --- apps/docs/content/docs/cli/getting-started.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/docs/content/docs/cli/getting-started.mdx b/apps/docs/content/docs/cli/getting-started.mdx index e8bde6e044d..2b2165d9795 100644 --- a/apps/docs/content/docs/cli/getting-started.mdx +++ b/apps/docs/content/docs/cli/getting-started.mdx @@ -14,7 +14,7 @@ and the local host server from your terminal or from CI. ## Install ```bash -curl -fsSL https://app.superset.sh/install.sh | sh +curl -fsSL https://superset.sh/cli/install.sh | sh ``` The script auto-detects your platform (macOS Apple Silicon or Linux x86_64) and installs the binary at `/usr/local/bin/superset`.