mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix(plantuml): ref to incorrect jar path variable
This commit is contained in:
@ -34,7 +34,7 @@ This function is called by `org-babel-execute-src-block'."
|
|||||||
(concat (shell-quote-argument (executable-find plantuml-executable-path))
|
(concat (shell-quote-argument (executable-find plantuml-executable-path))
|
||||||
" --headless"))
|
" --headless"))
|
||||||
((not (file-exists-p plantuml-jar-path))
|
((not (file-exists-p plantuml-jar-path))
|
||||||
(error "Could not find plantuml.jar at %s" org-plantuml-jar-path))
|
(error "Could not find plantuml.jar at %s" plantuml-jar-path))
|
||||||
((concat "java " (cdr (assoc :java params)) " -jar "
|
((concat "java " (cdr (assoc :java params)) " -jar "
|
||||||
(shell-quote-argument
|
(shell-quote-argument
|
||||||
(expand-file-name plantuml-jar-path)))))
|
(expand-file-name plantuml-jar-path)))))
|
||||||
|
Reference in New Issue
Block a user