Skip to content

Commit

Permalink
Fix tiny bug
Browse files Browse the repository at this point in the history
  • Loading branch information
parttimenerd committed Dec 3, 2023
1 parent 5fc9783 commit 7d72d3f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ abstract class BasePluginRunConfigurationExtension(private val name: String, pri
gradleConfs(
configuration.project
).keys.any { task.startsWith(it) }
})
}) || listOf("Java", "Kotlin", "Application", "JAR Application")
.any { configuration.type.displayName.startsWith(it) }
}

abstract fun computeVmParameters(project: Project): List<String>
Expand Down

0 comments on commit 7d72d3f

Please sign in to comment.