git-secret/utils/uninstall.sh
sobolevn cce852ca2d
Added uninstall target to the Makefile.
Removed `man/dest` folder, since it was an error.
2016-06-29 00:00:15 +03:00

18 lines
289 B
Bash

#!/usr/bin/env bash
set -e
PREFIX="$1"
if [ -z "$PREFIX" ]; then
echo "usage: $0 <prefix>" >&2
exit 1
fi
# Binary:
rm -f "$PREFIX"/bin/git-secret
# Manuals:
find "$PREFIX"/share/man/man1 -type f -name "git-secret-*.1" -exec rm -f {} \;
rm -f "$PREFIX"/share/man/man7/git-secret.7