mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-28 19:41:33 +02:00
10 lines
347 B
Bash
Executable File
10 lines
347 B
Bash
Executable File
if [ "$(id -u)" != "0" ]; then
|
|
echo "You must be root to install" 1>&2
|
|
exit 1
|
|
fi
|
|
command -v ant >/dev/null 2>&1 && command -v /usr/lib/jvm/java-7-openjdk-amd64/bin/javac >/dev/null 2>&1 || ./install-deps.sh
|
|
ant all &&\
|
|
cp ./bin/writelatex-git-bridge.jar /usr/local/sbin/ &&\
|
|
cp ./bin/wlgb /etc/init.d/ &&\
|
|
/usr/sbin/update-rc.d -f wlgb defaults
|