From 9adc036e386e7b2ebc45ad2c0c1161e899a28a20 Mon Sep 17 00:00:00 2001 From: florian Date: Fri, 2 Aug 2019 09:20:19 +0200 Subject: [PATCH] Correct the yaml file copy for integration environment. --- jenkins/Jenkinsfile-integ | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/Jenkinsfile-integ b/jenkins/Jenkinsfile-integ index 5c9f6c7..51482f2 100644 --- a/jenkins/Jenkinsfile-integ +++ b/jenkins/Jenkinsfile-integ @@ -17,7 +17,7 @@ pipeline { git url:'https://gogs.takiguchi.ovh/florian/codiki-properties.git', branch: 'master', credentialsId: 'a6494064-8130-42fd-9d3d-e7734518c79e' } script { - sh 'cp ./codiki-properties/application-prod.yml ./src/main/resources/application.yml' + sh 'cp ./codiki-properties/application-integ.yml ./src/main/resources/application.yml' } } }