Skip to content

Commit

Permalink
Actually use finding jars to index
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszwawrzyk committed Oct 30, 2024
1 parent 11a76b2 commit 764e201
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/com/virtuslab/shared_indexes/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ object Main {
logger.warn("Commit is not provided, using a default value")
"latest"
}
val generatedIndexes = new JarIndexesGenerator(intelliJ, workspace, inputs, key).generateIndexes()
val jarsToIndex = findJarsToIndex(workPlan)
val generatedIndexes = new JarIndexesGenerator(intelliJ, workspace, jarsToIndex, key).generateIndexes()
if (s3.isDefined) {
if (config.jarIndexesConfig.upload.value) {
deleteJarSharedIndexes(s3.get, key)
Expand Down

0 comments on commit 764e201

Please sign in to comment.