From fb6078ade5d547d36989e4d5195bd13e06c4b698 Mon Sep 17 00:00:00 2001 From: Eric Schneider <37347760+eric-schneider@users.noreply.github.com> Date: Fri, 14 Nov 2025 16:47:47 -0600 Subject: [PATCH 1/2] Add https to biz URL --- modules/ROOT/pages/install.adoc | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/ROOT/pages/install.adoc b/modules/ROOT/pages/install.adoc index 662991a..542dbbe 100644 --- a/modules/ROOT/pages/install.adoc +++ b/modules/ROOT/pages/install.adoc @@ -41,7 +41,7 @@ Scripted installation (recommended):: + [source,shell] ---- -curl -sSL ibm.biz/astra-cli | sh +curl -sSL https://ibm.biz/astra-cli | sh ---- + .Install to a custom location @@ -57,12 +57,11 @@ export ASTRA_HOME=**INSTALLATION_DIRECTORY** Replace `**INSTALLATION_DIRECTORY**` with the full path to your preferred installation directory. ==== -. Add the following lines to your shell profile (for example, `~/.zprofile` or `~/.bash_profile`) to make the `astra` command executable from any directory: +. Add the `astra` executable to your `PATH` by running command supplied after installation: + [source,bash] ---- -# Astra CLI shell configuration -eval "$(~/.astra/cli/astra shellenv)" +echo 'eval "$(~/.astra/cli/astra shellenv)"' >> ~/.zprofile ---- . Reload your shell profile or open a new terminal window. @@ -143,7 +142,7 @@ Scripted installation (recommended):: + [source,powershell] ---- -powershell -c "irm ibm.biz/astra-cli-win | iex" +powershell -c "irm https://ibm.biz/astra-cli-win | iex" ---- + .Install to a custom location From 2ecb20009e66fbe2bddbf50c7b99e5ead19da9f5 Mon Sep 17 00:00:00 2001 From: Eric Schneider <37347760+eric-schneider@users.noreply.github.com> Date: Fri, 14 Nov 2025 16:51:24 -0600 Subject: [PATCH 2/2] typo --- modules/ROOT/pages/install.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ROOT/pages/install.adoc b/modules/ROOT/pages/install.adoc index 542dbbe..3fe5ebf 100644 --- a/modules/ROOT/pages/install.adoc +++ b/modules/ROOT/pages/install.adoc @@ -57,7 +57,7 @@ export ASTRA_HOME=**INSTALLATION_DIRECTORY** Replace `**INSTALLATION_DIRECTORY**` with the full path to your preferred installation directory. ==== -. Add the `astra` executable to your `PATH` by running command supplied after installation: +. Add the `astra` executable to your `PATH` by running the command supplied after installation: + [source,bash] ----