c17cc5beb4
Add the basic structure for the magnum-ui repository to serve as a starting point for contributions. The structure is likely to change as development progresses. Change-Id: I5458741e2dd4c3409992315efaa60b33824b4ec8 Implements: blueprint repo-skeleton
8 lines
218 B
Bash
Executable File
8 lines
218 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}}
|
|
source ${VENV}/bin/activate && "$@"
|