From 296aed055e4f401a652393b6c71ec4bc75b31c0e Mon Sep 17 00:00:00 2001 From: The_Spider Date: Thu, 17 Mar 2022 10:43:26 -0500 Subject: [PATCH] adds conditional to curl install --- Jenkinsfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 5034e03..c35b562 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,10 +76,13 @@ podTemplate( container('golang') { writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA()) sh """ + if [ ! "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then + apk add --no-cache curl + fi if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then apk add --no-cache git fi - apk add --no-cache curl gcc musl-dev + apk add --no-cache gcc musl-dev curl \ --silent \ --location \