Skip to content

Commit

Permalink
[bot] "built_in_updates" Thu Jun 15 09:18:11 UTC 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
SpacemacsBot authored and smile13241324 committed Jun 15, 2023
1 parent 7a94c7e commit 26629bf
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions core/libs/package-build.el
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,9 @@ disallowed."
(defvar package-build--inhibit-checkout nil
"Whether to inhibit checkout. Useful for testing purposes.")

(defvar package-build--inhibit-build nil
"Whether to inhibit building. Useful for testing purposes.")

;;; Generic Utilities

(defun package-build--message (format-string &rest args)
Expand Down Expand Up @@ -943,10 +946,11 @@ are subsequently dumped."
(message "Fetcher: %s" fetcher)
(message "Source: %s\n" url)))
(funcall package-build-fetch-function rcp)
(package-build--select-version rcp)
(package-build--package rcp)
(when dump-archive-contents
(package-build-dump-archive-contents))
(unless package-build--inhibit-build
(package-build--select-version rcp)
(package-build--package rcp)
(when dump-archive-contents
(package-build-dump-archive-contents)))
(message "Built %s in %.3fs, finished at %s" name
(float-time (time-since start-time))
(format-time-string "%FT%T%z" nil t))))
Expand Down

0 comments on commit 26629bf

Please sign in to comment.