mirror of
https://github.com/correl/melpa.git
synced 2024-11-14 19:19:32 +00:00
Error when a string is passed as :fetcher
This commit is contained in:
parent
4baa022933
commit
7ea9c9a535
1 changed files with 2 additions and 2 deletions
|
@ -236,10 +236,10 @@ the same arguments.
|
|||
Returns a last-modification timestamp for the :files listed in
|
||||
CONFIG, if any, or `package-build-default-files-spec' otherwise."
|
||||
(let ((repo-type (plist-get config :fetcher)))
|
||||
(pb/message "Fetcher: %s" repo-type)
|
||||
(pb/message "Fetcher: %s" (symbol-name repo-type))
|
||||
(unless (eq 'wiki repo-type)
|
||||
(pb/message "Source: %s\n" (or (plist-get config :repo) (plist-get config :url))))
|
||||
(funcall (intern (format "pb/checkout-%s" repo-type))
|
||||
(funcall (intern (format "pb/checkout-%s" (symbol-name repo-type)))
|
||||
package-name config (file-name-as-directory working-dir))))
|
||||
|
||||
(defvar pb/last-wiki-fetch-time 0
|
||||
|
|
Loading…
Reference in a new issue