Skip to content

Commit

Permalink
Bug 735591 - [PATCH] Provide exit code in case generatePlantUMLOutput…
Browse files Browse the repository at this point in the history
… fails
  • Loading branch information
Dimitri van Heesch committed Aug 30, 2014
1 parent 88832b1 commit 94ea18e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plantuml.cpp
Expand Up @@ -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"))
{
Expand Down

0 comments on commit 94ea18e

Please sign in to comment.