diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 18:12:19 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-30 18:12:19 (GMT) |
commit | 94ea18e60c50db14f25eda642be020fac5917b3c (patch) | |
tree | 0270daf3269b9a0d6a490f91f633e0f4e9e2c01a | |
parent | 88832b15f1256846b1228ac411d270c6d092a50b (diff) | |
download | Doxygen-94ea18e60c50db14f25eda642be020fac5917b3c.zip Doxygen-94ea18e60c50db14f25eda642be020fac5917b3c.tar.gz Doxygen-94ea18e60c50db14f25eda642be020fac5917b3c.tar.bz2 |
Bug 735591 - [PATCH] Provide exit code in case generatePlantUMLOutput fails
-rw-r--r-- | src/plantuml.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plantuml.cpp b/src/plantuml.cpp index 18f028b..7e2863e 100644 --- a/src/plantuml.cpp +++ b/src/plantuml.cpp @@ -85,8 +85,8 @@ void generatePlantUMLOutput(const char *baseName,const char *outDir,PlantUMLOutp portable_sysTimerStart(); if ((exitCode=portable_system(pumlExe,pumlArgs,FALSE))!=0) { - err("Problems running PlantUML. Verify that the command 'java -jar \"%splantuml.jar\" -h' works from the command line\n", - plantumlJarPath.data()); + err("Problems running PlantUML. Verify that the command 'java -jar \"%splantuml.jar\" -h' works from the command line. Exit code: %d\n", + plantumlJarPath.data(),exitCode); } else if (Config_getBool("DOT_CLEANUP")) { |