Created
June 3, 2016 09:25
-
-
Save Nathaniel100/270116ffddcc36ac2c4b7089e84e1147 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
task unzip(type: Copy) { | |
def zipFile = file('src/dists/dist.zip') | |
def outputDir = file("${buildDir}/unpacked/dist") | |
from zipTree(zipFile) | |
into outputDir | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment