fix syntax

This commit is contained in:
Sieciech 2021-07-27 16:50:17 +02:00
parent 53c6780197
commit 9e1c7e6870
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -74,7 +74,7 @@ pipeline {
steps {
dir(path: 'src/backend') {
sh 'APP_SECRET=`php8.0 -r "echo md5(\\"branch=${BRANCH_NAME};\\");"` && sed -i "s/APP_SECRET=.*/APP_SECRET=${APP_SECRET}/g" .env'
sh 'sed -i "s/DATABASE_URL=.*/DATABASE_URL=${DatabaseUrlTesting}/g" .env.test'
sh '''sed -i 's/DATABASE_URL=.*/DATABASE_URL=${DatabaseUrlTesting}/g' .env.test'''
sh 'composer dump-env test'
sh 'php8.0 bin/console doctrine:schema:update --force';
}