mirror of
https://github.com/ethauvin/kobalt.git
synced 2025-04-26 08:27:12 -07:00
Fix main result.
This commit is contained in:
parent
e9cbe04317
commit
5ac94386fc
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ private class Main @Inject constructor(
|
|||
//
|
||||
val runTargetResult = taskManager.runTargets(args.targets, allProjects)
|
||||
if (result == 0) {
|
||||
result = runTargetResult.exitCode
|
||||
result = if (runTargetResult.taskResult.success) 0 else 1
|
||||
}
|
||||
|
||||
// Shutdown all plug-ins
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue