mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-29 22:31:27 -05:00
8 lines
201 B
Bash
8 lines
201 B
Bash
|
if [ "$(id -u)" != "0" ]; then
|
||
|
echo "You must be root to uninstall" 1>&2
|
||
|
exit 1
|
||
|
fi
|
||
|
rm -f /usr/local/sbin/writelatex-git-bridge.jar &&\
|
||
|
rm -f /etc/init.d/wlgb &&\
|
||
|
/usr/sbin/update-rc.d -f wlgb remove
|