From d05cede40930c3b3e54eb557e5bdd4aee25d90ee Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Sat, 7 Jun 2025 15:06:19 +0000 Subject: [PATCH] The command curl is replaced with wget --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 '''