Fail runner when update manifest fails (#3990)

Otherwise the update manifest job gets stuck.
This commit is contained in:
Dmitry Bushev 2022-12-15 19:12:09 +03:00 committed by GitHub
parent a2d8c1d0ab
commit 01f8e2976d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1031,7 +1031,13 @@ object Main {
exitFail()
}
try {
ProjectUploader.updateManifest(projectRoot, logLevel)
} catch {
case NonFatal(err) =>
err.printStackTrace()
exitFail()
}
exitSuccess()
}