Skip to content

Commit

Permalink
fix: find file in path
Browse files Browse the repository at this point in the history
  • Loading branch information
shuhangli committed Jul 19, 2023
1 parent 1c20e74 commit 9e0a3a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pluginGroup = com.github.suhli.ideagokratosplugin
pluginName = go-kratos-plugin
# SemVer format -> https://semver.org
pluginVersion = 0.0.13
pluginVersion = 0.0.14

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 221.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class DirHelper {
if (!file.isDirectory){
return false
}
return file.findChild(name) != null
return file.findFileByRelativePath(name) != null
}
}
}

0 comments on commit 9e0a3a1

Please sign in to comment.