mirror of
https://github.com/correl/melpa.git
synced 2024-11-15 03:00:14 +00:00
Fix references to non-local variables
This commit is contained in:
parent
da8cdc5e13
commit
c0f349295a
1 changed files with 4 additions and 4 deletions
|
@ -199,8 +199,8 @@ seconds; the server cuts off after 10 requests in 20 seconds.")
|
|||
(delete-directory dir t nil))
|
||||
(print "cloning repository")
|
||||
(pb/run-process nil "svn" "checkout" repo dir)))
|
||||
(let ((files (pb/expand-file-list pkg-cwd
|
||||
(or (plist-get cfg :files)
|
||||
(let ((files (pb/expand-file-list dir
|
||||
(or (plist-get config :files)
|
||||
(list "*.el")))))
|
||||
(apply 'pb/run-process dir "svn" "info" files))
|
||||
(while (setq ts (ignore-errors
|
||||
|
@ -237,8 +237,8 @@ seconds; the server cuts off after 10 requests in 20 seconds.")
|
|||
(pb/run-process nil "git" "clone" repo dir)))
|
||||
(when commit
|
||||
(pb/run-process dir "git" "checkout" commit))
|
||||
(let ((files (pb/expand-file-list pkg-cwd
|
||||
(or (plist-get cfg :files)
|
||||
(let ((files (pb/expand-file-list dir
|
||||
(or (plist-get config :files)
|
||||
(list "*.el")))))
|
||||
(apply 'pb/run-process dir "git" "log" "-n1" "--pretty=format:'\%ci'" files))
|
||||
(pb/find-parse-time
|
||||
|
|
Loading…
Reference in a new issue