From a50c7551d3e8cb18514f517d36b6ba343596a426 Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 12 Jun 2018 15:33:43 +0200 Subject: Bug 792449 - markdown plantuml use of graphviz fail if plantuml work i code file Added the commandExtension as required by plantuml in case the path is given. --- src/plantuml.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plantuml.cpp b/src/plantuml.cpp index 609d5fd..89e6e9e 100644 --- a/src/plantuml.cpp +++ b/src/plantuml.cpp @@ -88,7 +88,9 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp { pumlArgs += "-graphvizdot \""; pumlArgs += dotPath; - pumlArgs += "dot\" "; + pumlArgs += "dot"; + pumlArgs += portable_commandExtension(); + pumlArgs += "\" "; } pumlArgs+="-o \""; pumlArgs+=outDir; -- cgit v0.12