1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-18 12:28:09 +00:00

legacy: simplify pipenv install in script/fullbuild

This commit is contained in:
Pavol Rusnak 2019-04-25 12:59:44 +02:00
parent aae1be4914
commit 659feca7e1
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -50,11 +50,7 @@ worktree_build() {
fi fi
pushd $path/$MCU_ROOT pushd $path/$MCU_ROOT
if ! pipenv install; then
# older tags can fail because they don't have protobuf in Pipfile
pipenv run pip install "protobuf==3.4.0"
pipenv install pipenv install
fi
pipenv run script/cibuild pipenv run script/cibuild
popd popd
} }