Skip to content

Commit

Permalink
build fix II
Browse files Browse the repository at this point in the history
  • Loading branch information
rajatkhurana-adobe committed Jan 7, 2025
1 parent b449ead commit 83d1a1f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/resources/META-INF/archetype-post-generate.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,10 @@ if ((includeFormsenrollment == "y" || includeFormscommunications == "y") && fron
assert new File("$appsFolder/components/adaptiveForm/termsandconditions").deleteDir();
assert new File("$appsFolder/components/adaptiveForm/verticaltabs").deleteDir();
} else {
assert new File("$uiFrontendReactPackage/config-overrides.js").delete();
File file = new File("$uiFrontendReactPackage/config-overrides.js")
if (file.exists()) {
assert file.delete()
}
}


Expand Down

0 comments on commit 83d1a1f

Please sign in to comment.