wooga / atlas-build-unity

a gradle companion plugin for the wooga internal unity build system
Apache License 2.0
2 stars 2 forks source link

Fix overload for task action for SighRenewBatch #172

Closed Larusso closed 2 years ago

Larusso commented 2 years ago

Description

I was under the assumption what when one overrides a gradle task type which contains an TaskAction annotated method that if one annotates another new method that the original action is no longer executed. That is not the case. So I fixed this here to override the exec method rather than declaring another action to be executed.

Changes