You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
231 B
Plaintext
8 lines
231 B
Plaintext
5 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
DEPOT_TOOLS=$(dirname "$0")/..
|
||
|
|
||
|
PYTHON3_BIN_DIR="$DEPOT_TOOLS/$(cat $DEPOT_TOOLS/python3_bin_reldir.txt | xargs echo)"
|
||
|
PATH="$PYTHON3_BIN_DIR":"$PYTHON3_BIN_DIR/Scripts":"$PATH"
|
||
|
"$PYTHON3_BIN_DIR/python3" "$@"
|