Merge "Fix venv path"

This commit is contained in:
Jenkins 2016-02-16 21:16:29 +00:00 committed by Gerrit Code Review
commit df9b2aacd2
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ tools_path=${tools_path:-$(dirname $0)}
venv_path=${venv_path:-${tools_path}}
venv_dir=${venv_name:-/../.venv}
TOOLS=${tools_path}
VENV=${venv:-${venv_path}/${venv_dir}}
VENV=${venv:-${venv_path}${venv_dir}}
echo "Sourcing the virtual environment now."
source ${VENV}/bin/activate && "$@"