mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 03:00:14 +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
|
(vector
|
||||||
file-name nil "No description available." version)))
|
file-name nil "No description available." version)))
|
||||||
(aset pkg-info 3 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)
|
(print pkg-info)
|
||||||
(if (file-exists-p pkgdst)
|
(if (file-exists-p pkgdst)
|
||||||
(delete-file pkgdst t))
|
(delete-file pkgdst t))
|
||||||
|
|
Loading…
Reference in a new issue