Use python2.7 for doc-tools-update-cli-reference

os_doc_tools/commands.py does not work with python3 at the moment.
doc-tools-update-cli-reference does not work at the moment on
distributions with python3 as default python interpreter. Enforce the
usage of python2.7 for the used virtual environment.

Change-Id: Iabb51a03c824ff317c99f34898cde891a915b060
This commit is contained in:
Christian Berendt 2015-06-15 16:15:53 +02:00
parent 6329eea32a
commit 4d20fc2776
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ if [[ ! -e $HOME/.gitconfig ]]; then
fi
if [[ ! -e .venv ]]; then
virtualenv .venv
virtualenv -p python2.7 .venv
fi
source .venv/bin/activate