From fcd93fcb67eb1b4fceacc40410c14d1fea6e6fb5 Mon Sep 17 00:00:00 2001 From: Greg M Date: Tue, 28 Jan 2025 19:23:55 -0700 Subject: [PATCH] docs: Use bash (not sh) for Goose CLI installation script one-liner (#862) Co-authored-by: angiejones --- documentation/docs/getting-started/installation.md | 2 +- documentation/docs/quickstart.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/docs/getting-started/installation.md b/documentation/docs/getting-started/installation.md index 8015af43f..333e0da2b 100644 --- a/documentation/docs/getting-started/installation.md +++ b/documentation/docs/getting-started/installation.md @@ -19,7 +19,7 @@ import RateLimits from '@site/src/components/RateLimits'; Run the following command to install the latest version of Goose: ```sh - curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | sh + curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash ``` This script will fetch the latest version of Goose and set it up on your system. diff --git a/documentation/docs/quickstart.md b/documentation/docs/quickstart.md index 443646f90..6f6156915 100644 --- a/documentation/docs/quickstart.md +++ b/documentation/docs/quickstart.md @@ -26,7 +26,7 @@ You can use Goose via CLI or Desktop application. Run the following command to install the latest version of Goose: ```sh - curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | sh + curl -fsSL https://github.com/block/goose/releases/download/stable/download_cli.sh | bash ```