From 60cdada5620bce515009e292d091a7e3e81070c6 Mon Sep 17 00:00:00 2001 From: Florent Benoit Date: Wed, 14 Aug 2019 15:12:06 +0200 Subject: [PATCH] docs(README): add new install instructions for chectl on Windows Related to https://github.com/eclipse/che/issues/14114 Change-Id: I9269216ffcb1a569bc030cb97dd689114948bf36 Signed-off-by: Florent Benoit --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 541394b0c..0234ff93a 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,18 @@ There are two channels of `chectl`: `stable` and `next` Stable is for all tagged versions of Eclipse Che. Next is updated after each commit/Pull Request being merged in master branch. +If you're using Windows x64, here is how to install chectl by using one single PowerShell command: + +- 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/')) +``` + +- 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/')) +``` + If you're using linux or macOS, here is how to install chectl by using one single command: - For `stable` channel: