Skip to content

Commit 004de6e

Browse files
committed
use folder "misc" for packages without package type
1 parent 84b1747 commit 004de6e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • tooling/conga-aem-maven-plugin/src/main/java/io/wcm/devops/conga/plugins/aem/maven/allpackage

tooling/conga-aem-maven-plugin/src/main/java/io/wcm/devops/conga/plugins/aem/maven/allpackage/AllPackageBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ private String buildPackagePath(ContentPackageFile pkg, String rootPath, String
415415
String runModeSuffix = buildRunModeSuffix(pkg, environmentRunMode);
416416

417417
// add run mode suffix to both install folder path and package file name
418-
String path = rootPath + "/" + pkg.getPackageType() + "/install" + runModeSuffix;
418+
String path = rootPath + "/" + StringUtils.defaultString(pkg.getPackageType(), "misc") + "/install" + runModeSuffix;
419419

420420
String versionSuffix = "";
421421
String packageVersion = pkg.getVersion();

0 commit comments

Comments
 (0)