Skip to content

Commit

Permalink
Fix URL where to download chectl install script from (#2868)
Browse files Browse the repository at this point in the history
* Fix URL where to download chectl install script from

Signed-off-by: Dmytro Nochevnov <[email protected]>

* Fix minikube-chectl-commands-tests.yml

Signed-off-by: Dmytro Nochevnov <[email protected]>

---------

Signed-off-by: Dmytro Nochevnov <[email protected]>
  • Loading branch information
dmytro-ndp authored Apr 18, 2024
1 parent 9093dab commit 5e809d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/minikube-chectl-commands-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5e809d2

Please sign in to comment.