blob: 6697166e0e5d33bdcc9e7db0648bdf52a8f9be24 (
plain) (
blame)
1
2
3
4
5
|
#!/bin/bash -e
[ -d ${WORKSPACE}@tmp/mc3 ] && exit 0
wget -q https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh -b -p ${WORKSPACE}@tmp/mc3
|