Corrected case of the tools.jar filename in the umlgraph shell script.

This commit is contained in:
Diomidis Spinellis 2008-09-12 15:26:53 +00:00
parent 5c21f3a786
commit 328901d184
2 changed files with 5 additions and 1 deletions

View File

@ -4,6 +4,10 @@
<dl>
<dt>Version 5.2 Under development </dt><dd>
<ul>
<li> Corrected case of the tools.jar filename in the umlgraph shell script.
(Noted by &#216;yvind Jergan).
</li>
</dd>
<dt>Version 5.1 2008-08-27 </dt><dd>

View File

@ -19,7 +19,7 @@ else
BASE=$1
FILETYPE=$2
shift 2
java -classpath "$UMLGRAPH_HOME/UmlGraph.jar:$JAVA_HOME/lib/Tools.jar" \
java -classpath "$UMLGRAPH_HOME/UmlGraph.jar:$JAVA_HOME/lib/tools.jar" \
org.umlgraph.doclet.UmlGraph -package $* -output - $BASE.java |
dot -T$FILETYPE -o$BASE.$FILETYPE
fi