I have had some issues retrieving the dist directory of the copilot.el repo with MELPA.
Currently the layer packages.el file specifies:
(defconst copilot-packages
'((copilot :location (recipe
:fetcher github
:repo "zerolfx/copilot.el"
:files (:defaults "dist")))))
However, it seems like the dist directory is not properly being retrieved and placed in the destination folder. Manually retrieving the dist folder and its contents and placing it in the ~/emacs.d/elpa/develop/copilot.../ directory makes the layer work as intended, but this is not a desirable solution.
I have had some issues retrieving the
distdirectory of the copilot.el repo with MELPA.Currently the layer
packages.elfile specifies:However, it seems like the
distdirectory is not properly being retrieved and placed in the destination folder. Manually retrieving thedistfolder and its contents and placing it in the~/emacs.d/elpa/develop/copilot.../directory makes the layer work as intended, but this is not a desirable solution.