d2/ci/release/template/scripts/uninstall.sh

17 lines
317 B
Bash
Raw Normal View History

2022-11-11 09:17:06 +00:00
#!/bin/sh
set -eu
2022-11-12 22:19:09 +00:00
cd -- "$(dirname "$0")/.."
. ./scripts/lib.sh
2022-11-11 09:17:06 +00:00
main() {
2022-11-12 22:19:09 +00:00
if [ ! -e "${PREFIX-}" ]; then
2022-11-11 09:17:06 +00:00
echoerr "\$PREFIX must be set to a unix prefix directory from which to uninstall d2 like /usr/local"
2022-11-12 22:19:09 +00:00
return 1
2022-11-11 09:17:06 +00:00
fi
sh_c rm -f "$PREFIX/bin/d2"
2022-11-14 22:46:52 +00:00
sh_c rm -f "$PREFIX/share/man/man1/d2.1"
2022-11-11 09:17:06 +00:00
}
main "$@"