From 50f4a45057dda4731faa83e6fb8a36755875b08f Mon Sep 17 00:00:00 2001 From: bung87 Date: Sat, 6 Jan 2024 12:57:48 +0800 Subject: [PATCH] fix tnimlsp binary path doesn't have ext on windows --- tests/tnimlsp.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tnimlsp.nim b/tests/tnimlsp.nim index 6dcab9b..9db11f9 100644 --- a/tests/tnimlsp.nim +++ b/tests/tnimlsp.nim @@ -4,7 +4,7 @@ include .. / src / nimlsppkg / messages import pkg/asynctools let - nimlsp = parentDir(parentDir(currentSourcePath())) / "nimlsp" + nimlsp = parentDir(parentDir(currentSourcePath())) / "nimlsp".addFileExt(ExeExt) p = startProcess(nimlsp, options = {}) suite "Nim LSP basic operation":