Skip to content

Commit

Permalink
modify PATH env var to pick miniconda prefix dynamically
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesdrotar committed Nov 11, 2016
1 parent 7e501bf commit c7ee551
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build_tools/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ if [[ "$DISTRIB" == "conda" ]]; then
fi
chmod +x miniconda.sh && ./miniconda.sh -b
cd ..
export PATH=/home/travis/miniconda/bin:$PATH
echo $PREFIX
export PATH=$PREFIX/bin:$PATH

conda update --yes conda
popd

Expand Down

0 comments on commit c7ee551

Please sign in to comment.