From e971330496d14cba10285ead61ca86baab224835 Mon Sep 17 00:00:00 2001 From: Tom Koo Date: Tue, 31 Mar 2026 20:27:28 -0700 Subject: [PATCH] chore: replace cre.chain.link with app.chain.link The self-serve portal domain has moved from cre.chain.link to app.chain.link to support multiple BCM products. --- install/install.ps1 | 2 +- install/install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/install/install.ps1 b/install/install.ps1 index 11bc97b0..a469eaf8 100644 --- a/install/install.ps1 +++ b/install/install.ps1 @@ -3,7 +3,7 @@ # It detects the architecture, downloads the correct .exe, # and adds it to the user's PATH. # -# Usage: irm https://cre.chain.link/install.ps1 | iex +# Usage: irm https://app.chain.link/install.ps1 | iex # --- Configuration --- $ErrorActionPreference = "Stop" # Exit script on any error diff --git a/install/install.sh b/install/install.sh index e16faea1..7c4bb8c0 100755 --- a/install/install.sh +++ b/install/install.sh @@ -3,7 +3,7 @@ # This is a universal installer script for 'cre'. # It detects the OS and architecture, then downloads the correct binary. # -# Usage: curl -sSL https://cre.chain.link/install.sh | bash +# Usage: curl -sSL https://app.chain.link/install.sh | bash set -e # Exit immediately if a command exits with a non-zero status.