-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuninstall.sh
44 lines (37 loc) · 1017 Bytes
/
uninstall.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
#!/bin/bash
# Error handling
set -e
function removebgit() {
if [[ -f /usr/local/bin/bgit ]] ; then
if command -v "doas" &> /dev/null ; then
doas rm /usr/local/bin/bgit
echo "removing /usr/local/bin/bgit ..."
else
sudo rm /usr/local/bin/bgit
echo "removing /usr/local/bin/bgit ..."
fi
fi
}
removebgit
function removeconfig() {
if [[ -d "$HOME/.config/bgit/" ]] ; then
echo "removing ~/.config/bgit ..."
if command -v "doas" &> /dev/null ; then
doas rm -r $HOME/.config/bgit
else
sudo rm -r $HOME/.config/bgit
fi
fi
}
removeconfig
function removeman() {
if [[ -f "/usr/share/man/man1/bgit.1.gz" ]] ; then
echo "removing man page /usr/share/man/man1/bgit.1.gz ..."
if command -v "doas" &> /dev/null ; then
doas rm /usr/share/man/man1/bgit.1.gz
else
sudo rm /usr/share/man/man1/bgit.1.gz
fi
fi
}
removeman