git-svn-id: http://repo.nplusc.de/svn/iZink@250 8b19561d-0d00-6744-8ac1-9afc8f58a8aa
@@ -43,7 +43,7 @@ public void zipIt(String zipFile)
for (String file : this.fileList)
{
System.out.println("File Added : " + file);
- ZipEntry ze = new ZipEntry(source + File.separator + file);
+ ZipEntry ze = new ZipEntry(file);
zos.putNextEntry(ze);
try