mirror of
https://github.com/correl/melpa.git
synced 2024-12-22 11:08:54 +00:00
migrate takes multiple files
This commit is contained in:
parent
aa6be4b309
commit
4c1b957710
1 changed files with 9 additions and 8 deletions
17
migrate
17
migrate
|
@ -12,14 +12,13 @@
|
|||
(buffer-substring-no-properties (point-min) (point-max))))))))
|
||||
|
||||
(message (prin1-to-string command-line-args-left))
|
||||
(when command-line-args-left
|
||||
(let* ((file-name (car command-line-args-left))
|
||||
(config
|
||||
(read-from-file
|
||||
(message (expand-file-name ".config" (expand-file-name file-name "epkgs")))))
|
||||
(master
|
||||
(read-from-file
|
||||
(expand-file-name "master" (expand-file-name file-name "epkgs")))))
|
||||
(defun process-one (file-name)
|
||||
(let ((config
|
||||
(read-from-file
|
||||
(expand-file-name ".config" (expand-file-name file-name "epkgs"))))
|
||||
(master
|
||||
(read-from-file
|
||||
(expand-file-name "master" (expand-file-name file-name "epkgs")))))
|
||||
(princ
|
||||
(pp-to-string
|
||||
(cons
|
||||
|
@ -35,3 +34,5 @@
|
|||
:fetcher
|
||||
(plist-get config :fetcher)))
|
||||
))))
|
||||
|
||||
(mapc 'process-one command-line-args-left)
|
||||
|
|
Loading…
Reference in a new issue