mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-21 12:39:08 +01:00
13 lines
186 B
Bash
13 lines
186 B
Bash
unset workdir
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" > /dev/null 2>&1 && pwd)"
|
|
. "$DIR/prelude.sh"
|
|
|
|
set -o errexit
|
|
set -o verbose
|
|
|
|
cd src
|
|
|
|
activate_venv
|
|
echo $python $@
|
|
$python "$@"
|