Skip to content

Commit

Permalink
fix(intellij): binary resolution on windows (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
victor-teles authored Oct 20, 2023
1 parent 9ea517a commit 8c62904
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object BiomeUtils {
val executablePath = BiomeSettings.getInstance(project).executablePath
val biomeBinFile = directoryManager.nodeModulesDirs
.asSequence()
.mapNotNull { it.findFileByRelativePath(".bin/biome") }
.mapNotNull { it.findFileByRelativePath("@biomejs/biome/bin/biome") }
.filter { it.isValid }
.firstOrNull()

Expand Down

0 comments on commit 8c62904

Please sign in to comment.