From 5e809d2ae21a35bca1a74782fc824fd4dde05b58 Mon Sep 17 00:00:00 2001 From: Dmytro Nochevnov Date: Thu, 18 Apr 2024 12:22:06 +0300 Subject: [PATCH] Fix URL where to download chectl install script from (#2868) * Fix URL where to download chectl install script from Signed-off-by: Dmytro Nochevnov * Fix minikube-chectl-commands-tests.yml Signed-off-by: Dmytro Nochevnov --------- Signed-off-by: Dmytro Nochevnov --- .github/workflows/minikube-chectl-commands-tests.yml | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/minikube-chectl-commands-tests.yml b/.github/workflows/minikube-chectl-commands-tests.yml index 6ae32275a..1dd87f252 100644 --- a/.github/workflows/minikube-chectl-commands-tests.yml +++ b/.github/workflows/minikube-chectl-commands-tests.yml @@ -53,7 +53,7 @@ jobs: with: minikube-version: v1.29.0 - name: Install chectl from the stable channel - run: bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=stable + run: bash <(curl -sL https://che-incubator.github.io/chectl/install.sh) --channel=stable - name: Install NodeJS uses: actions/setup-node@v3 with: diff --git a/README.md b/README.md index b4ee68c5b..76ffabd76 100644 --- a/README.md +++ b/README.md @@ -37,24 +37,24 @@ If you're using Windows x64, here is how to install chectl by using one single P - For `stable` channel: ``` -C:\Users> Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://www.eclipse.org/che/chectl/win/')) +C:\Users> Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://che-incubator.github.io/chectl/install.ps1')) ``` - For `next` channel: ``` -C:\Users> $CHANNEL="next"; Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://www.eclipse.org/che/chectl/win/')) +C:\Users> $CHANNEL="next"; Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://che-incubator.github.io/chectl/install.ps1')) ``` If you're using linux or macOS, here is how to install chectl by using one single command: - For `stable` channel: ``` -$ bash <(curl -sL https://www.eclipse.org/che/chectl/) +$ bash <(curl -sL https://che-incubator.github.io/chectl/install.sh) ``` - For `next` channel: ``` -$ bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=next +$ bash <(curl -sL https://che-incubator.github.io/chectl/install.sh) --channel=next ``` Manual install: