The command curl is replaced with wget

This commit is contained in:
Marcin-Ramotowski 2025-06-07 15:06:19 +00:00
parent 17162027b6
commit d05cede409

4
Jenkinsfile vendored
View File

@ -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
'''