Skip to content

Commit

Permalink
package-build-all: Call package-build-archive correctly
Browse files Browse the repository at this point in the history
The argument is a package name not a package object.

Fixes #26.
  • Loading branch information
tarsius committed Oct 5, 2018
1 parent dfcb7f0 commit 0a22c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package-build.el
Expand Up @@ -853,7 +853,7 @@ Do not use this alias elsewhere.")
(dolist (name recipes)
(let ((rcp (with-demoted-errors (package-recipe-lookup name))))
(if rcp
(if (with-demoted-errors (package-build-archive rcp))
(if (with-demoted-errors (package-build-archive name))
(cl-incf success)
(push name failed))
(push name invalid))))
Expand Down

0 comments on commit 0a22c3f

Please sign in to comment.