get rid of silent fail for andoird/ios builds

This commit is contained in:
Jakub Sokołowski 2018-05-24 10:58:04 +02:00
parent bd1422c627
commit 1e9fd71b6e
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
1 changed files with 2 additions and 2 deletions

View File

@ -75,11 +75,11 @@ timeout(90) {
}
stage('Deploy (Android)') {
sh ('bundle exec fastlane android release || exit 0')
sh ('bundle exec fastlane android release')
}
stage('Deploy (iOS)') {
sh ('bundle exec fastlane ios release || exit 0')
sh ('bundle exec fastlane ios release')
}