mirror of
https://github.com/sdkman/sdkman-cli.git
synced 2026-02-01 10:13:07 -05:00
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -z $(which java) ]; then
|
|
echo "Please install java before continuing..."
|
|
fi
|
|
|
|
if [ -z $(which vertx) ]; then
|
|
echo "Please install vertx before continuing..."
|
|
exit 0
|
|
fi
|
|
|
|
vertx run srv/server.groovy
|