diff --git a/.ci/build_conda_dist.sh b/.ci/build_conda_dist.sh index 131c3c3dd86358d53ab10dbf79b948354e2d711c..4aadf35054c296b1ba5d7b6814435d42134ad2d9 100644 --- a/.ci/build_conda_dist.sh +++ b/.ci/build_conda_dist.sh @@ -30,6 +30,6 @@ conda build --output-folder=dist/conda-bld .conda for pyver in 2.7 3.4 3.5 3.6; do conda create -y --name "test$pyver" python=$pyver source activate test$pyver - conda install -y -c file://`pwd`/dist $name + conda install -y -c file://`pwd`/dist/conda-bld $name source deactivate done