mirror of
https://github.com/apache/impala.git
synced 2025-12-30 03:01:44 -05:00
6 lines
147 B
Bash
Executable File
6 lines
147 B
Bash
Executable File
#!/bin/bash
|
|
set -eu -o pipefail
|
|
PY_DIR=$(dirname "$0")/../infra/python
|
|
python "$PY_DIR/bootstrap_virtualenv.py"
|
|
exec "$PY_DIR/env/bin/python" "$@"
|