From 5e5b7d4ace39a39fca19676fcf1da602b3cd3383 Mon Sep 17 00:00:00 2001 From: InigoGutierrez Date: Fri, 8 May 2020 14:22:54 +0200 Subject: Changed plantUML executable and removed blank end lines. --- compilePlantUML.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'compilePlantUML.sh') diff --git a/compilePlantUML.sh b/compilePlantUML.sh index dcef247..e5de323 100755 --- a/compilePlantUML.sh +++ b/compilePlantUML.sh @@ -20,9 +20,11 @@ targetDir="/tmp/plantUML" sourceFile="$1" targetFile="${targetDir}/${sourceFile##*/}" targetFile="${targetFile%.*}.png" -plantUMLExec="$HOME/programs/plantUML/plantuml.jar" +#plantUMLExec="$HOME/programs/plantUML/plantuml.jar" [ -d "$targetDir" ] || mkdir -p "$targetDir" -java -jar "$plantUMLExec" "$sourceFile" -o "$targetDir" +# java -jar "$plantUMLExec" "$sourceFile" -o "$targetDir" +plantuml "$sourceFile" -o "$targetDir" [ -n "$open" ] && "$VIEWER" "$targetFile" & exit 0 # So return value is not that of previous line + -- cgit v1.2.1