Skip to content
This repository was archived by the owner on Nov 8, 2017. It is now read-only.

Commit c11ecf2

Browse files
committed
Replaced spaces with tabs in uninstall.sh.
1 parent f88f997 commit c11ecf2

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

uninstall.sh

+9-9
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
#!/bin/sh
22

33
if [ `lsb_release -i -s` = Debian -o `lsb_release -c -s` = debian ]; then
4-
DISTRO=DEBIAN
4+
DISTRO=DEBIAN
55
else
6-
echo "Sorry, your Linux distribuition isn't supported. Right now this script works only with Debian." 1>&2
7-
exit 1
6+
echo "Sorry, your Linux distribuition isn't supported. Right now this script works only with Debian." 1>&2
7+
exit 1
88
fi
99

1010
if [ `id -u` != 0 ]; then
11-
echo "This script should be started with root privileges." 1>&2
12-
exit 1
11+
echo "This script should be started with root privileges." 1>&2
12+
exit 1
1313
fi
1414

1515
echo "Are you going to uninstall debumblebee? (Y/N)"
1616
read ANSWER
1717
case $ANSWER in
18-
y|Y) ;;
19-
*) exit 2 ;;
18+
y|Y) ;;
19+
*) exit 2 ;;
2020
esac
2121

2222
cd install-files
2323
case $DISTRO in
24-
DEBIAN) sh debian.uninstall ;;
24+
DEBIAN) sh debian.uninstall ;;
2525
esac
2626
if [ $? -ne 0 ]; then
27-
exit 1
27+
exit 1
2828
fi
2929

3030
echo

0 commit comments

Comments
 (0)