|| name.endsWith(".prj") || name.endsWith(".cst");
}
};
ZipOutputStream zipOut = new ZipOutputStream(output);
IOUtils.zipDirectory(tempDir, zipOut, filter);
zipOut.finish();
// This is an error, because this closes the output stream too... it's
// not the right place to do so
// zipOut.close();
} finally {