1#!/bin/bash
2
3set -e
4set -x
5
6if [[ "$(uname -s)" == 'Darwin' ]]; then
7    if which pyenv > /dev/null; then
8        eval "$(pyenv init -)"
9    fi
10    pyenv activate conan
11fi
12
13conan user
14python conan/build.py
15