diff options
Diffstat (limited to 'compilePlantUML.sh')
-rwxr-xr-x | compilePlantUML.sh | 6 |
1 files changed, 4 insertions, 2 deletions
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 + |