From d006f76dea8aa90e985965d782898f7229e2f638 Mon Sep 17 00:00:00 2001 From: wedens Date: Wed, 29 Jul 2020 09:50:22 +0700 Subject: [PATCH] org-roam: check for sqlite3 executable in doctor --- modules/lang/org/doctor.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/lang/org/doctor.el b/modules/lang/org/doctor.el index 412afa510..1ebfb3f9d 100644 --- a/modules/lang/org/doctor.el +++ b/modules/lang/org/doctor.el @@ -6,5 +6,7 @@ (warn! "Couldn't find gnuplot. org-plot/gnuplot will not work"))) (when (featurep! +roam) + (unless (executable-find "sqlite3") + (warn! "Couldn't find the sqlite3 executable. org-roam will not work.")) (unless (executable-find "dot") (warn! "Couldn't find the dot executable (from graphviz). org-roam will not be able to generate graph visuallizations.")))