Skip to content
Snippets Groups Projects
Unverified Commit 49b3df97 authored by Arvind Das's avatar Arvind Das Committed by GitHub
Browse files

Update red5.sh

parent 3ff4e67d
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,12 @@ if [ -z "$RED5_HOME" ]; then ...@@ -5,7 +5,12 @@ if [ -z "$RED5_HOME" ]; then
fi fi
# Java 11 # Java 11
export JAVA_HOME=/usr/lib/jvm/java-11-amazon-corretto # Set JavaHome if it exists
if [ -f "${JAVA_HOME}/bin/java" ]; then
JAVA_HOME=${JAVA_HOME}
else
echo "Please set JAVA_HOME in your current path. Preferably use JDK 11."
fi
P=":" # The default classpath separator P=":" # The default classpath separator
OS=`uname` OS=`uname`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment