Jenkins bugs fixed

This commit is contained in:
Juan 2018-06-11 20:21:50 +02:00
parent e93cbda6d0
commit ab830ae526
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -41,8 +41,9 @@ node {
if (curCompose.exists()) { if (curCompose.exists()) {
sh "docker-compose --file docker-compose.current.yml down --rmi all" sh "docker-compose --file docker-compose.current.yml down --rmi all"
} }
*/
def compose = new File('docker-compose.yml') def compose = new File('docker-compose.yml')
compose.renameTo 'docker-compose.current.new.yml' compose.renameTo 'docker-compose.current.new.yml'
*/
} }
} }