aboutsummaryrefslogtreecommitdiff
path: root/uninstall.sh
blob: ba0b5b6f44ddc785c25688c700dfcb606a1a3c16 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e

script_dir=$(dirname "$0")
cd "$script_dir"

[ $(id -u) -ne 0 ] && echo "You need root privileges to run the uninstall script" && exit 1

ninja -C build uninstall

echo "Successfully uninstalled gsr-notify"