Skip to content

Commit

Permalink
Merge pull request #2630 from michael-berlin/stop_printing_python2_bi…
Browse files Browse the repository at this point in the history
…naries

Suppress output when checking for python2 binaries.
  • Loading branch information
michael-berlin authored Mar 8, 2017
2 parents f9b8c35 + a9e9713 commit f740814
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev.env
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ export PYTHONPATH=$(prepend_path $PYTHONPATH $VTTOP/test)
export PYTHONPATH=$(prepend_path $PYTHONPATH $VTTOP/test/cluster/sandbox)

# Ensure bootstrap and install_grpc use python2 on systems which default to python3
command -v python2 && PYTHON=python2 || PYTHON=python
command -v python2 >/dev/null && PYTHON=python2 || PYTHON=python
export PYTHON
command -v pip2 && PIP=pip2 || PIP=pip
command -v pip2 >/dev/null && PIP=pip2 || PIP=pip
export PIP
command -v virtualenv2 && VIRTUALENV=virtualenv2 || VIRTUALENV=virtualenv
command -v virtualenv2 >/dev/null && VIRTUALENV=virtualenv2 || VIRTUALENV=virtualenv
export VIRTUALENV

selenium_dist=$VTROOT/dist/selenium
Expand Down

0 comments on commit f740814

Please sign in to comment.