We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3004101 commit 07aa83dCopy full SHA for 07aa83d
copilot.el
@@ -317,14 +317,13 @@ Incremented after each change.")
317
((and (file-name-absolute-p copilot-server-executable)
318
(file-exists-p copilot-server-executable))
319
copilot-server-executable)
320
- ((executable-find copilot-server-executable nil))
+ ((executable-find copilot-server-executable))
321
(t
322
(let ((path (executable-find
323
(f-join copilot-install-dir
324
(cond ((eq system-type 'windows-nt) "")
325
(t "bin"))
326
- copilot-server-executable)
327
- nil)))
+ copilot-server-executable))))
328
(unless (and path (file-exists-p path))
329
(error "The package %s is not installed. Unable to find %s"
330
copilot-server-package-name path))
0 commit comments