| 12345678910111213141516171819202122 | #!/bin/bashset -exif [[ "$(uname -s)" == 'Darwin' ]]; then    brew update || brew update    brew outdated pyenv || brew upgrade pyenv    brew install pyenv-virtualenv    brew install cmake || true    if which pyenv > /dev/null; then        eval "$(pyenv init -)"    fi    pyenv install 3.7.1    pyenv virtualenv 3.7.1 conan    pyenv rehash    pyenv activate conanfipip install conan==1.10.2pip install conan_package_tools
 |