mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Fix a bug with a mismatch with single file packages.
With single file packages, the filename must match the package name.
This commit is contained in:
parent
5ca0041048
commit
b76c0107c8
1 changed files with 1 additions and 1 deletions
|
@ -321,7 +321,7 @@
|
|||
(vector
|
||||
file-name nil "No description available." version)))
|
||||
(aset pkg-info 3 version)
|
||||
(aset pkg-info 0 (downcase (aref pkg-info 0)))
|
||||
(aset pkg-info 0 (downcase file-name))
|
||||
(print pkg-info)
|
||||
(if (file-exists-p pkgdst)
|
||||
(delete-file pkgdst t))
|
||||
|
|
Loading…
Reference in a new issue