summaryrefslogblamecommitdiffstats
path: root/uninstall
blob: 456e6568e89f1e8f5d34150e80c48e4ef8936e3e (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                        
#!/bin/sh
set -eu

[ -d "$1" ] || (echo "package $1 not found" >&2; exit 1)

[ -f "$1/Makefile" ] && (cd "$1" && make -s uninstall)
stow -D "$1"

true