diff options
author | Yves Fischer <yves.fischer@cern.ch> | 2016-12-01 13:33:36 +0100 |
---|---|---|
committer | Yves Fischer <yves.fischer@cern.ch> | 2016-12-01 13:33:42 +0100 |
commit | 2ad292bf503105eb6b0b293d79b0476f4314b432 (patch) | |
tree | 451bde4133892cf8f2277ee3bf6ee413b8203dad /packages/gwt-chromium | |
parent | 74ad736656b986942d99667394b5462975c26304 (diff) | |
download | debian-packages-2ad292bf503105eb6b0b293d79b0476f4314b432.tar.gz debian-packages-2ad292bf503105eb6b0b293d79b0476f4314b432.zip |
Replace << by doLast
Diffstat (limited to 'packages/gwt-chromium')
-rw-r--r-- | packages/gwt-chromium/build.gradle | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/gwt-chromium/build.gradle b/packages/gwt-chromium/build.gradle index 63f16f9..3f4a46c 100644 --- a/packages/gwt-chromium/build.gradle +++ b/packages/gwt-chromium/build.gradle @@ -35,7 +35,7 @@ task unpackGwtPlugin() { } unpackGwtPlugin {}.dependsOn(downloadGwtPlugin) -unpackGwtPlugin << { +unpackGwtPlugin.doLast { def fs = new FileOutputStream(zip) final bytes = inputs.files.first().readBytes() fs.write(bytes, 306, bytes.length - 306) @@ -64,7 +64,7 @@ task unpackPdfPlugin() { } unpackPdfPlugin.dependsOn(downloadPdfPlugin) -unpackPdfPlugin << { +unpackPdfPlugin.doLast { def fs = new FileOutputStream(zip) final bytes = inputs.files.first().readBytes() fs.write(bytes, 306, bytes.length - 306) |