forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lila.sh
executable file
·54 lines (41 loc) · 1.33 KB
/
lila.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/sh -e
# Starts a dev console to compile and run lichess.
# Usage:
# ./lila
# Then in the sbt console:
# run
# We use .sbtopts instead
export SBT_OPTS=""
if [ ! -f ".sbtopts" ]; then
cp .sbtopts.default .sbtopts
fi
if [ ! -f "conf/application.conf" ]; then
cp conf/application.conf.default conf/application.conf
fi
java_env="-Dreactivemongo.api.bson.document.strict=false"
cat << "BANNER"
|\_ _ _ _
/o \ | (_) ___| |__ ___ ___ ___ ___ _ __ __ _
(_. || | | |/ __| '_ \ / _ \/ __/ __| / _ \| '__/ _` |
/__\ | | | (__| | | | __/\__ \__ \| (_) | | | (_| |
)___( |_|_|\___|_| |_|\___||___/___(_)___/|_| \__, |
|___/
BANNER
if ! command -v java; then
echo "Cannot find Java, is it installed?"
exit 1
fi
version=$(java -version 2>&1 | awk -F '"' '/version/ {print $2}')
echo Java "$version"
javabin=$(which java)
if [ -z "$JAVA_HOME" ]; then
echo "Warning, JAVA_HOME is unset"
elif [ "$JAVA_HOME/bin/java" != "$javabin" ]; then
echo "Warning, JAVA_HOME [$JAVA_HOME] is not the same as java on PATH [$javabin]"
fi
if ! $(java --list-modules | grep -q jdk.compiler -); then
echo Warning, $javabin is missing module jdk.compiler - this can happen if you mistakenly use a JRE instead of a JDK.
fi
command="sbt $java_env $@"
echo $command
$command