branch: elpa-admin
commit b9f2b90d49a4f348d320c21562ffa43f6f73f883
Author: Stefan Monnier <[email protected]>
Commit: Stefan Monnier <[email protected]>
* admin/archive-contents.el (archive--sync-emacs-repo): Fix thinko.
---
admin/archive-contents.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/admin/archive-contents.el b/admin/archive-contents.el
index ae46435..b63f4cd 100755
--- a/admin/archive-contents.el
+++ b/admin/archive-contents.el
@@ -572,7 +572,8 @@ Return non-nil if there's an \"emacs\" repository present."
;; has setup a clone of Emacs under the "emacs" subdirectory.
(let ((emacs-repo-root (expand-file-name "emacs")))
(if (not (file-directory-p emacs-repo-root))
- (message "No \"emacs\" subdir: will skip :core packages")
+ (progn (message "No \"emacs\" subdir: will skip :core packages")
+ nil)
(let ((default-directory emacs-repo-root))
(message "Running git pull in %S" default-directory)
(call-process "git" nil t nil "pull")