Skip to content

Commit

Permalink
Fix typo in variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
PiyalAhmed committed May 16, 2024
1 parent 5e87fd8 commit 796cf45
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,9 @@ private void addExtensions(Map<String, Object> data) {
String locationName = getProject().getName() + "-${version}-${name}-${classifier}.zip";
Path antoraContent = getRelativeProjectPath()
.resolve(GENERATED_DOCS + "antora-content/" + locationName);
Path antoraDepenencies = getRelativeProjectPath()
Path antoraDependencies = getRelativeProjectPath()
.resolve(GENERATED_DOCS + "antora-dependencies-content/" + locationName);
zipContentsCollector.locations(antoraContent, antoraDepenencies);
zipContentsCollector.locations(antoraContent, antoraDependencies);
zipContentsCollector.alwaysInclude(getAlwaysInclude().getOrNull());
});
extensions.rootComponent((rootComponent) -> rootComponent.name("boot"));
Expand Down

0 comments on commit 796cf45

Please sign in to comment.