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

Remote the “update” task.

We already have —update.
This commit is contained in:
Cedric Beust 2017-04-06 10:08:10 -07:00
parent ae99bb6de5
commit f2297fcfc3

View file

@ -27,11 +27,4 @@ class KobaltPlugin @Inject constructor(val checkVersions: CheckVersions, val upd
checkVersions.run(project)
return TaskResult()
}
@Task(name = "update", description = "Update Kobalt to the latest version")
fun taskUpdate(project: Project) : TaskResult {
updateKobalt.updateKobalt()
return TaskResult()
}
}