The recipe's ZipPackage class thinks it knows how to create a zip for any project but is making assumptions about what should be included. Currently, it creates the zip image, including everything in the output directory under the bin subdirectory. This is actually too much, since the output directory may contain test files.
The simplest fix is for the calling program to create the zip image and let ZipPackage simply zip it.
The recipe's
ZipPackageclass thinks it knows how to create a zip for any project but is making assumptions about what should be included. Currently, it creates the zip image, including everything in the output directory under the bin subdirectory. This is actually too much, since the output directory may contain test files.The simplest fix is for the calling program to create the zip image and let
ZipPackagesimply zip it.