Skip to content

Commit

Permalink
TEIIDDES-2956
Browse files Browse the repository at this point in the history
 * tweaked the zip entry path to remove the redundant "\org\xxx\xxx"
string
  • Loading branch information
blafond committed Oct 27, 2016
1 parent 4b060d6 commit 86de038
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -128,7 +128,7 @@ private void createZip(File[] files, String targetZip, String packageName) {
|| files[i].isDirectory())
continue; // Just in case..

String fname = packageName + files[i].getName();
String fname = files[i].getName();
ZipEntry ze= new ZipEntry(fname);
ze.setTime(files[i].lastModified());

Expand Down

0 comments on commit 86de038

Please sign in to comment.