// The Task Runner should have set the product directory
productDir = System.getProperty(PRODUCT_DIR_PROP);
if (productDir == null)
throw new BuildException("Please specify the location of the product directory via the \""+ PRODUCT_DIR_PROP + "\" system property");
productDir = Utils.toFile(productDir).getAbsolutePath();
if (!productDir.endsWith("/"))
productDir += '/';