Open contrapunctus-1 opened 3 years ago
To reproduce -
-q
-Q
(let* ((no-ssl (and (memq system-type '(windows-nt ms-dos)) (not (gnutls-available-p)))) (proto (if no-ssl "http" "https"))) (add-to-list 'package-archives (cons "melpa" (concat proto "://melpa.org/packages/")) t) (when (< emacs-major-version 24) (add-to-list 'package-archives '("gnu" . (concat proto "://elpa.gnu.org/packages/"))))) (package-initialize)
ivy error (:message "Bad Request" :url "https://melpa.org/packages/ivy-20201109.1753.tar") lua-mode error (:message "Bad Request" :url "https://melpa.org/packages/lua-mode-20201109.2336.tar")
After disabling feather-mode, the packages are upgraded successfully.
just (package-refresh-contents) issue?
(package-refresh-contents)
It's possible. My guess is that feather is running Emacs with -Q, which ignores any fixes one may have had in the site Lisp files. 🤔
To reproduce -
-q
or-Q
After disabling feather-mode, the packages are upgraded successfully.