diff options
| author | Menny Even Danan <menny@evendanan.net> | 2020-03-16 14:29:10 +0000 |
|---|---|---|
| committer | Menny Even Danan <menny@evendanan.net> | 2020-03-16 14:29:35 +0000 |
| commit | c51478aee30a9e86489b52c0d5f99283b92c68c1 (patch) | |
| tree | 545ddc96768fd0cedfd5833a08af508f7ef1e845 | |
| parent | 158a437d24a3dc0a6d2c0aa8fd287431a44ac612 (diff) | |
| download | AnySoftKeyboard-c51478aee30a9e86489b52c0d5f99283b92c68c1.tar.gz AnySoftKeyboard-c51478aee30a9e86489b52c0d5f99283b92c68c1.tar.bz2 | |
Fix deployment task-configuring var
| -rw-r--r-- | deployment/build.gradle | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/deployment/build.gradle b/deployment/build.gradle index 6632c3c74..e178e1115 100644 --- a/deployment/build.gradle +++ b/deployment/build.gradle @@ -36,13 +36,13 @@ deployments { } // start - IME -def imeOnMasterPush = tasks.register("imeOnMasterPush").configure { +def imeOnMasterPush = tasks.register("imeOnMasterPush") { it.group "Publishing" it.description "Deployment request on master push for IME" it.dependsOn tasks.named("deploymentRequest_imeMaster_alpha_100") } -def imePromoteMaster = tasks.register("imePromoteMaster").configure { +def imePromoteMaster = tasks.register("imePromoteMaster") { it.group "Publishing" it.description "Deployment promoting request on master for IME" //promoting ime only on Wednesday @@ -56,13 +56,13 @@ def imePromoteMaster = tasks.register("imePromoteMaster").configure { // end - IME // start - addons -def addOnsOnMasterPush = tasks.register("addOnsOnMasterPush").configure { +def addOnsOnMasterPush = tasks.register("addOnsOnMasterPush") { it.group "Publishing" it.description "Deployment request on master push for all addons" it.dependsOn tasks.named("deploymentRequest_addOnsMaster_beta_100") } -def addOnsPromoteMaster = tasks.register("addOnsPromoteMaster").configure { +def addOnsPromoteMaster = tasks.register("addOnsPromoteMaster") { it.group 'Publishing' it.description 'NO-OP: Deployment request on master push for all addons' } |
