mirror of
https://github.com/nigels-com/glew.git
synced 2024-11-15 18:44:42 +00:00
14 lines
189 B
Bash
14 lines
189 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
if [[ "$(uname -s)" == 'Darwin' ]]; then
|
||
|
if which pyenv > /dev/null; then
|
||
|
eval "$(pyenv init -)"
|
||
|
fi
|
||
|
pyenv activate conan
|
||
|
fi
|
||
|
|
||
|
python build.py
|