1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 16:28:12 -07:00

Introduce IPlugin#shutdown.

This commit is contained in:
Cedric Beust 2016-03-30 21:54:49 -08:00
parent 8d692d2b89
commit f66515efe6
4 changed files with 28 additions and 1 deletions

View file

@ -233,6 +233,9 @@ private class Main @Inject constructor(
result = runTargetResult.exitCode
}
// Shutdown all plug-ins
plugins.shutdownPlugins()
log(3, "Timings:\n " + runTargetResult.messages.joinToString("\n "))
}
}