mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
9 lines
221 B
Bash
9 lines
221 B
Bash
|
if [ "$(id -u)" != "0" ]; then
|
||
|
echo "You must be root to install" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
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
|