mirror of
https://github.com/vale981/melpazoid
synced 2025-03-04 17:01:40 -05:00
fix issues associated with updated builtin dependencies
per https://github.com/melpa/melpa/pull/9131
This commit is contained in:
parent
6ee358727b
commit
b099fc75df
2 changed files with 2 additions and 1 deletions
|
@ -30,7 +30,7 @@
|
|||
(melpazoid--remove-no-compile)
|
||||
(ignore-errors (kill-buffer "*Compile-Log*"))
|
||||
(let ((inhibit-message t)
|
||||
(load-path (append load-path (melpazoid--package-load-paths))))
|
||||
(load-path (append (melpazoid--package-load-paths) load-path)))
|
||||
(byte-compile-file filename))
|
||||
(with-current-buffer (get-buffer-create "*Compile-Log*")
|
||||
(if (melpazoid--buffer-almost-empty-p)
|
||||
|
|
|
@ -246,6 +246,7 @@ def _write_requirements(files: list[Path]) -> None:
|
|||
+ "(package-initialize)\n"
|
||||
+ """(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))\n"""
|
||||
+ "(package-refresh-contents)\n"
|
||||
+ "(setq package-install-upgrade-built-in t)\n"
|
||||
+ "(package-install 'pkg-info)\n"
|
||||
+ "(package-install 'package-lint)\n"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue