Skip to content

Commit

Permalink
Work around 'bash: /dev/fd/63: No such file or directory' error
Browse files Browse the repository at this point in the history
Signed-off-by: Dmytro Nochevnov <dnochevn@redhat.com>
  • Loading branch information
dmytro-ndp committed Aug 9, 2019
1 parent 9898a7a commit 36c9561
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion e2e/jenkins/crw-ci/pr-check/k8s/Jenkinsfile
Expand Up @@ -37,8 +37,11 @@ pipeline {
stage("Download chectl") {
steps {
script {
// TO-DO use option "--install-path" https://github.com/eclipse/che/pull/14182
sh """
sudo bash <(curl -sL https://www.eclipse.org/che/chectl/) --channel=stable
curl -sL https://www.eclipse.org/che/chectl/ > install_chectl.sh
chmod +x install_chectl.sh
sudo PATH=$PATH ./install_chectl.sh -channel=stable
sudo mv /usr/local/bin/chectl ${WORKSPACE}/chectl
sudo chmod +x ${WORKSPACE}/chectl
"""
Expand Down

0 comments on commit 36c9561

Please sign in to comment.