All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bot.line-bot-cli.3.0.0.source-code.launch.script Maven / Gradle / Ivy

There is a newer version: 4.7.0
Show newest version
#!/bin/bash
# Custom Launch Script avoid https://github.com/spring-projects/spring-boot/issues/5164

[[ -n "$DEBUG" ]] && set -x

JAR_LOCATION=$0

# Find Java
if [[ -x "$JAVA_HOME/bin/java" ]]; then
    JAVA="$JAVA_HOME/bin/java"
elif which java > /dev/null 2>&1; then
    JAVA=$(which java)
else
    echo "Unable to find Java"
    exit 1
fi

$JAVA -Dsun.misc.URLClassPath.disableJarChecking=true $JAVA_OPTS -jar $JAR_LOCATION $RUN_ARGS "$@"
exit $?;




© 2015 - 2024 Weber Informatics LLC | Privacy Policy