Use direct URL in edit-server recipe

The previous URL in the edit-server recipe [1] redirects to another
URL [2]. For some unknown reason, installing the edit-server package
through el-get yields the follwowing error message:

"Failed to find end of headers in HTTP response from
http://github.com/stsquad/emacs_chrome/raw/master/servers/edit-server.el
for package edit-server; see buffer *http github.com:443*"

Changing the URL the redirected one fixes the problem for me.

[1] http://github.com/stsquad/emacs_chrome/raw/master/servers/edit-server.el
[2] https://raw.githubusercontent.com/stsquad/emacs_chrome/master/servers/edit-server.el
This commit is contained in:
Rafael Laboissiere 2019-09-27 15:51:05 +02:00
parent 156d1a0bbb
commit abed375b9c

View File

@ -1,4 +1,4 @@
(:name edit-server
:description "Emacs edit-server. This provides an edit server to respond to requests from the Chrome Emacs Chrome plugin."
:type http
:url "http://github.com/stsquad/emacs_chrome/raw/master/servers/edit-server.el")
:url "https://raw.githubusercontent.com/stsquad/emacs_chrome/master/servers/edit-server.el")