From cf393c0811d488017aaf6c9814c8818759e4a9bc Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 4 Jan 2016 10:11:16 -0500 Subject: [PATCH] make sure that venv is always removed prior to creating it Signed-off-by: Alfredo Deza --- scripts/build_utils.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index 105a5460..2abf4cc1 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -14,6 +14,7 @@ install_python_packages () { # install_python_packages "to_install[@]" # Create the virtualenv + rm -rf "$WORKSPACE/venv" virtualenv $WORKSPACE/venv # Define and ensure the PIP cache -- 2.47.3