From f06bc1fd9e6518cfb623165a390485283b73dcdf Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Fri, 2 Oct 2015 16:01:23 -0400 Subject: Initial commit --- scripts/cbc_repo_clean | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 scripts/cbc_repo_clean (limited to 'scripts/cbc_repo_clean') diff --git a/scripts/cbc_repo_clean b/scripts/cbc_repo_clean new file mode 100755 index 0000000..d7dbb83 --- /dev/null +++ b/scripts/cbc_repo_clean @@ -0,0 +1,27 @@ +#!/bin/bash +EXEC_PATH=$(dirname "${BASH_SOURCE[0]}") +source "$EXEC_PATH/cbc_functions.inc" + +CONDA_BUILD=$(get_conda_build) +REPO=$(get_conda_repo) + +if [ ! -d "$CONDA_BUILD" ]; then + echo "Oops... No conda-bld directory" + exit 1 +fi + +if [ ! -d "$REPO" ]; then + echo "No local repo found." + exit 1 +fi + +echo "This operation will destory conda's local package repository." +echo -n "Do you wish to continue? [y/N]: " +if [ `user_choice` -ne 0 ]; then + echo "Aborting." + exit 255 +fi + +cd "$REPO" +rm -rf *.bz2 +conda index . -- cgit