fixed deploy not being run with bash
Some checks failed
CSGOWTF/csgowtf/pipeline/head There was a failure building this commit

This commit is contained in:
2021-10-20 18:30:14 +02:00
parent 4ca1d24bbe
commit 3f8446f7dd

2
Jenkinsfile vendored
View File

@@ -48,7 +48,7 @@ pipeline {
FTP_USERNAME = credentials('csgowtf-deploy-user-dev') FTP_USERNAME = credentials('csgowtf-deploy-user-dev')
} }
steps { steps {
sh '${env.WORKSPACE}/deploy.sh' sh 'bash deploy.sh'
} }
} }
} }