mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
13 lines
235 B
Bash
Executable file
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
|