Remove --no-dev

This commit is contained in:
Jannis Portmann 2022-01-23 12:06:24 +01:00
parent e4972d1b32
commit ee36881c49

2
Jenkinsfile vendored
View file

@ -8,7 +8,7 @@ node {
stage('Install dependencies') {
// Install dependencies for build later
sh 'composer update --no-dev'
sh 'composer update'
sh 'yarn install'
}