mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
7 lines
201 B
Bash
Executable file
7 lines
201 B
Bash
Executable file
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
|