summaryrefslogtreecommitdiff
path: root/.emacs.d
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2023-02-16 17:51:22 -0700
committerSean Whitton <spwhitton@spwhitton.name>2023-02-16 17:51:24 -0700
commitf631e2ab49f73c365817a5f7c3f0f9f84c9d0cee (patch)
treec83917f41c82e2346b264ac48de13454d42bb2b5 /.emacs.d
parente842cacb4096f174ae454dcf3099df6f6dc7c736 (diff)
downloaddotfiles-f631e2ab49f73c365817a5f7c3f0f9f84c9d0cee.tar.gz
use 'git annex add' instead of 'git update-index'
It should be harmless to add current versions of the files to the annex, and the 'git update-index' command would fail whenever Gnus created new files.
Diffstat (limited to '.emacs.d')
-rw-r--r--.emacs.d/init.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el
index 9f9664de..84db077b 100644
--- a/.emacs.d/init.el
+++ b/.emacs.d/init.el
@@ -3178,8 +3178,8 @@ mutt's review view, after exiting EDITOR."
(let ((repo (expand-file-name "~/src/athpriv/"))
(news (expand-file-name "~/src/athpriv/News/")))
(when (file-directory-p news)
- (apply #'call-process "git" nil nil nil "-C" news "update-index"
- "-q" "--refresh" (directory-files news nil "^[^.]"))
+ (apply #'call-process "git" nil nil nil "-C" news "annex" "add"
+ (directory-files news nil "^[^.]"))
;; We want Gnus running on just one machine at once to avoid conflicts
;; in automatic updates to score files. If there are no uncommitted
;; changes then it might be that Gnus is already running somewhere else.