Skip to content

Commit 37ea71f

Browse files
committed
fix wsl glint
1 parent 7a91b07 commit 37ea71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/emberjs/glint/GlintLspSupportProvider.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ class GlintLspServerDescriptor(private val myProject: Project) : LspServerDescri
7777
val path = "./node_modules/@glint/core/bin/glint-language-server.js"
7878
val builder = ProcessBuilder()
7979
.directory(File(workingDir.path))
80-
.command("wsl", "--", "test", "-f", "\"$path\"", "||", "echo", "\"true\"")
80+
.command("wsl", "--", "test", "-f", "\"$path\"", "&&", "echo", "\"true\"")
8181
val p = builder.start()
8282
p.waitFor()
8383
val out = p.inputStream.reader().readText().trim()

0 commit comments

Comments
 (0)