Fix +plantuml/install.

This commit is contained in:
Sergey Trofimov 2018-02-13 22:23:07 +03:00
parent cb3e780a96
commit d7846c3831

View file

@ -4,7 +4,7 @@
(defun +plantuml/install () (defun +plantuml/install ()
"Install plantuml.jar." "Install plantuml.jar."
(interactive) (interactive)
(unless (file-exists-p plantuml-jar-path) (if (file-exists-p plantuml-jar-path)
(user-error "plantuml.jar already installed")) (user-error "plantuml.jar already installed")
(url-copy-file "https://kent.dl.sourceforge.net/project/plantuml/plantuml.jar" (url-copy-file "https://kent.dl.sourceforge.net/project/plantuml/plantuml.jar"
plantuml-jar-path)) plantuml-jar-path)))