diff --git a/Jenkinsfile b/Jenkinsfile index 25f04d8..f6c1aeb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,8 +37,8 @@ pipeline { sh label: 'Build Docker image', script: 'docker build -t ${DOCKER_IMAGE} .' sh label: 'Install dgoss', script: ''' - curl -s -L https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -o goss - curl -s -L https://github.com/aelsabbahy/goss/releases/latest/download/dgoss -o dgoss + wget https://github.com/aelsabbahy/goss/releases/latest/download/goss-linux-amd64 -O goss + wget https://github.com/aelsabbahy/goss/releases/latest/download/dgoss -O dgoss chmod +rx *goss '''