We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c115e1c commit e356655Copy full SHA for e356655
sh/setup-plantuml.sh
@@ -11,6 +11,9 @@ print "Downloading plantuml"
11
curl -LO https://github.com/plantuml/plantuml/releases/download/v1.2025.4/plantuml-mit-1.2025.4.jar
12
13
print "Starting server"
14
-if ! java -jar ./plantuml-mit-1.2025.4.jar -picoweb:8080:127.0.0.1 &; then
+java -jar ./plantuml-mit-1.2025.4.jar -picoweb:8080:127.0.0.1 &
15
+if [ $? -ne 0 ]; then
16
print "Server failed!"
-fi;
17
+else
18
+ print "Server PID:" $!
19
+fi
0 commit comments