removed success check

This commit is contained in:
Ziver Koc 2016-12-20 17:01:44 +01:00
parent d16a3aa8a0
commit a322447fcb

6
Jenkinsfile vendored
View file

@ -23,10 +23,8 @@ node {
stage('Deploy') { stage('Deploy') {
if (currentBuild.result == 'SUCCESS') { input message: 'Deploy?', submitter: 'ziver'
input message: 'Deploy?', submitter: 'ziver' sh 'ant deploy'
sh 'ant deploy'
}
} }
} }