2e042e4c45
* Ported over from the Catalyst repos into its own plugin for better maintainability and ease of sharing with upstream. Change-Id: I4e7e1787330d549c59ede6f024e1216f5a073ecd
14 lines
506 B
Bash
Executable File
14 lines
506 B
Bash
Executable File
#!/bin/bash
|
|
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}}
|
|
HORIZON_DIR=${TOOLS%/tools}
|
|
|
|
# This horrible mangling of the PYTHONPATH is required to get the
|
|
# babel-angular-gettext extractor to work. To fix this the extractor needs to
|
|
# be packaged on pypi and added to global requirements. That work is in progress.
|
|
export PYTHONPATH="$HORIZON_DIR"
|
|
source ${VENV}/bin/activate && "$@"
|