File: uninstall.sh

package info (click to toggle)
git-secret 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,724 kB
  • sloc: sh: 4,580; makefile: 162; xml: 31; python: 22
file content (17 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

set -e


readonly 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