Skip to content
Snippets Groups Projects
Commit c129b9cf authored by Paul McCarthy's avatar Paul McCarthy :mountain_bicyclist:
Browse files

fix path in conda build script

parent 1025e4e2
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -30,6 +30,6 @@ conda build --output-folder=dist/conda-bld .conda ...@@ -30,6 +30,6 @@ conda build --output-folder=dist/conda-bld .conda
for pyver in 2.7 3.4 3.5 3.6; do for pyver in 2.7 3.4 3.5 3.6; do
conda create -y --name "test$pyver" python=$pyver conda create -y --name "test$pyver" python=$pyver
source activate test$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 source deactivate
done done
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