Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Fix patchPluginXML not finding README.md in IDEA 2021.1
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-sucha committed Apr 29, 2021
1 parent 0a0ae5b commit 8828e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ tasks {
// Extract the <!-- Plugin description --> section from README.md and provide for the plugin's manifest
pluginDescription(
closure {
File("./README.md").readText().lines().run {
File(projectDir, "README.md").readText().lines().run {
val start = "<!-- Plugin description -->"
val end = "<!-- Plugin description end -->"

Expand Down

0 comments on commit 8828e75

Please sign in to comment.