Skip to content

Instantly share code, notes, and snippets.

@imadi
Last active October 17, 2017 05:22
Show Gist options
  • Select an option

  • Save imadi/14f7ea748f75722374616644564e8ca5 to your computer and use it in GitHub Desktop.

Select an option

Save imadi/14f7ea748f75722374616644564e8ca5 to your computer and use it in GitHub Desktop.

Revisions

  1. imadi revised this gist Oct 17, 2017. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion Unzip.groovy
    Original file line number Diff line number Diff line change
    @@ -2,6 +2,6 @@ def builder = new AntBuilder()
    builder.unzip(src: srcPath, dest: destPath) {
    mapper(type: "flatten")
    patternset() {
    include(name: "*/*.mp3")
    include(name: "**/*.mp3")
    }
    }
  2. imadi revised this gist Dec 27, 2016. No changes.
  3. imadi revised this gist Dec 27, 2016. No changes.
  4. imadi created this gist Dec 27, 2016.
    7 changes: 7 additions & 0 deletions Unzip.groovy
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    def builder = new AntBuilder()
    builder.unzip(src: srcPath, dest: destPath) {
    mapper(type: "flatten")
    patternset() {
    include(name: "*/*.mp3")
    }
    }