0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-24 00:17:37 +01:00
mongodb/evergreen/sasl_windows_cyrussasl_teardown.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
496 B
Bash
Raw Permalink Normal View History

DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
. "$DIR/prelude.sh"
if [ "${task_name}" != "sasl_windows_cyrussasl" ]; then
exit 0
fi
echo "Cleaning up Windows CyrusSASL Test Artifacts"
readonly k_cyrussasl_default_dir_root="/cygdrive/c/CMU"
if [[ ! -d "$k_cyrussasl_default_dir_root" ]]; then
echo "Could not find $k_cyrussasl_default_dir_root to cleanup..."
exit 0
fi
rm -rf "$k_cyrussasl_default_dir_root"
echo "Deleted $k_cyrussasl_default_dir_root from host"