Skip to content
Snippets Groups Projects
Commit 5a69a2c59111 authored by Pierre-Yves David's avatar Pierre-Yves David :octopus:
Browse files

now that the venv has a unique name we better cleanup afterward

parent 9a21f3004bf5
No related branches found
No related tags found
No related merge requests found
......@@ -21,6 +21,12 @@
venv_path=/tmp/build-reference-${repo_id}-$RANDOM-venv
rm -rf $venv_path
function finish {
rm -rf $venv_path
}
trap finish EXIT
virtualenv -q $venv_path
PYTHONWARNINGS="ignore:DEPRECATION" ${venv_path}/bin/pip --disable-pip-version-check --quiet install "mercurial==${hg_version}"
......@@ -33,4 +39,3 @@
"${root}"/make-reference "${repo_source}" "${repo_id}" "${partial_sets_file}" "$@"
"${root}"/make-partial-repos "${repo_id}"-*.benchrepo
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment