From 3f75f2cf2732e9bddacb74d9a665bc9340a19279 Mon Sep 17 00:00:00 2001 From: JenChieh Date: Sun, 18 Feb 2024 15:04:46 -0800 Subject: [PATCH] fix(copilot.el): Windows' executable path --- copilot.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copilot.el b/copilot.el index b680a06..79100ac 100644 --- a/copilot.el +++ b/copilot.el @@ -104,7 +104,7 @@ indentation offset." (defconst copilot--server-executable (if (eq system-type 'windows-nt) - (f-join copilot-install-dir "node_modules" "copilot-node-server" "copilot" + (f-join copilot-install-dir "node_modules" "copilot-node-server" "bin" "copilot-node-server") (f-join copilot-install-dir "bin" "copilot-node-server")) "The dist directory containing agent.js file.")