From f5a2d65dc7451d47ffc95d0c1c980927d97656b3 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Tue, 31 Mar 2026 23:08:23 -0700 Subject: [PATCH 1/2] docs: explain how to pass --force to the install script When piping the install script to bash, users often try `| bash --force` which doesn't work. Add a tip showing the correct `| bash -s -- --force` syntax. Closes #423 --- src/content/docs/getting-started/index.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/content/docs/getting-started/index.mdx b/src/content/docs/getting-started/index.mdx index fd6436c2..edbc5a26 100644 --- a/src/content/docs/getting-started/index.mdx +++ b/src/content/docs/getting-started/index.mdx @@ -47,6 +47,15 @@ iwr -UseBasicParsing 'https://raw.githubusercontent.com/shorebirdtech/install/ma +:::tip +If you already have Shorebird installed and want to overwrite the existing installation, pass `--force` to the install script: + +```bash +curl --proto '=https' --tlsv1.2 https://raw.githubusercontent.com/shorebirdtech/install/main/install.sh -sSf | bash -s -- --force +``` + +::: + :::note Installing Shorebird CLI requires `git`. From 50fcb9eec3a7706627396ea68a338c309cdeee90 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Tue, 31 Mar 2026 23:15:06 -0700 Subject: [PATCH 2/2] fix: format getting-started page with prettier --- src/content/docs/getting-started/index.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/content/docs/getting-started/index.mdx b/src/content/docs/getting-started/index.mdx index edbc5a26..62fb30c7 100644 --- a/src/content/docs/getting-started/index.mdx +++ b/src/content/docs/getting-started/index.mdx @@ -47,8 +47,8 @@ iwr -UseBasicParsing 'https://raw.githubusercontent.com/shorebirdtech/install/ma -:::tip -If you already have Shorebird installed and want to overwrite the existing installation, pass `--force` to the install script: +:::tip If you already have Shorebird installed and want to overwrite the +existing installation, pass `--force` to the install script: ```bash curl --proto '=https' --tlsv1.2 https://raw.githubusercontent.com/shorebirdtech/install/main/install.sh -sSf | bash -s -- --force