Skip to content

Instantly share code, notes, and snippets.

@Nathaniel100
Created June 3, 2016 09:25
Show Gist options
  • Save Nathaniel100/270116ffddcc36ac2c4b7089e84e1147 to your computer and use it in GitHub Desktop.
Save Nathaniel100/270116ffddcc36ac2c4b7089e84e1147 to your computer and use it in GitHub Desktop.
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