From 3f8446f7dd0b3084ef2882203309e1296a6d556d Mon Sep 17 00:00:00 2001 From: Giovanni Harting <539@idlegandalf.com> Date: Wed, 20 Oct 2021 18:30:14 +0200 Subject: [PATCH] fixed deploy not being run with bash --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 820cae6..227948e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ pipeline { FTP_USERNAME = credentials('csgowtf-deploy-user-dev') } steps { - sh '${env.WORKSPACE}/deploy.sh' + sh 'bash deploy.sh' } } }