From cdbf024243bf0efc5c189f4b7d0d864e7b5c9bdb Mon Sep 17 00:00:00 2001 From: Philippe Zwietering Date: Sat, 15 Nov 2025 15:05:49 +0100 Subject: [PATCH] Correcte manier van bash installeren --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 69092a5..b94696b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -10,7 +10,7 @@ pipeline { } steps { echo 'Starting build step...' - sh 'apk install bash -y' + sh 'apk add bash' sh 'bash ./scripts/build.sh' } }