Skip to content

Commit

Permalink
mu4e-server: support non-numeric versions
Browse files Browse the repository at this point in the history
For development / testing.
  • Loading branch information
djcb committed Jun 1, 2024
1 parent 626b16a commit e978a58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mu4e/mu4e-server.el
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ As per issue #2198."
;; sanity-check 2
(let ((version (let ((s (shell-command-to-string
(concat mu4e-mu-binary " --version"))))
(and (string-match "version \\([.0-9]+\\)" s)
(and (string-match "version \\(.+\\)" s)
(match-string 1 s)))))
(if (not (string= version mu4e-mu-version))
(mu4e-error
Expand Down

0 comments on commit e978a58

Please sign in to comment.