From c129b9cf3bae9ab2f6059f135a1861670f0c3e05 Mon Sep 17 00:00:00 2001 From: Paul McCarthy <pauldmccarthy@gmail.com> Date: Tue, 6 Mar 2018 13:29:09 +0000 Subject: [PATCH] fix path in conda build script --- .ci/build_conda_dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build_conda_dist.sh b/.ci/build_conda_dist.sh index 131c3c3dd..4aadf3505 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 -- GitLab