Fix typo with build_env

Sadly, this creeped in on our last change.  Not sure how we missed it.

Change-Id: I3a1cbbe10db67c4a0fc0f410f6c8755219a5788e
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
This commit is contained in:
Paul Belanger 2016-06-15 16:37:54 -04:00
parent 3081edc056
commit 92bd9bdf54
No known key found for this signature in database
GPG Key ID: 611A80832067AF38

View File

@ -12,6 +12,6 @@ for BRANCH in $BRANCHES; do
git --git-dir=$WORKING_DIR/.git show $BRANCH:upper-constraints.txt \
2>/dev/null > /tmp/upper-constraints.txt || true
rm -rf build_env
virtualenv -p $PYTHON_VERSION $build_env
virtualenv -p $PYTHON_VERSION build_env
build_env/bin/pip --verbose wheel -r /tmp/upper-constraints.txt -w $WHEELHOUSE_DIR || true
done