Skip to content
Snippets Groups Projects
Commit 646316e9 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Define use_pip

parent 9729e765
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,15 @@ PREFIX=`pwd`/${CONDA_PREFIX}
run_cmd $(dirname ${0})/before_build.sh
# Verify where pip is installed
use_pip=`which pip`
if [ -z "${use_pip}" ]; then
log_error "Cannot find pip, aborting..."
exit 1
else
log_info "Using pip: ${use_pip}"
fi
# zc.recipe.egg needs some special installation instructions
if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
run_cmd ${use_pip} install --no-binary ":all:" zc.recipe.egg
......
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