ctf-tools/keystone/uninstall
2016-10-13 19:04:58 -07:00

13 lines
235 B
Bash
Executable file

#!/bin/bash
set -e -o pipefail
source ctf-tools-venv-activate
pip uninstall -y keystone-engine || true
if [[ -d keystone && -d keystone/build ]]; then
export PREFIX="$PWD"
pushd keystone/build
make uninstall
popd
fi