Skip to content

Commit a043ade

Browse files
committed
debug
1 parent 3402133 commit a043ade

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.evergreen/scripts/configure-env.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ else
4646
PYMONGO_BIN_DIR=$HOME/cli_bin
4747
fi
4848

49-
PATH="$MONGODB_BINARIES:$DRIVERS_TOOLS_BINARIES:$PYMONGO_BIN_DIR:$PATH"
50-
5149
cat <<EOT > "$SCRIPT_DIR"/env.sh
5250
export PROJECT_DIRECTORY="$PROJECT_DIRECTORY"
5351
export CURRENT_VERSION="$CURRENT_VERSION"
@@ -78,7 +76,7 @@ export PYMONGO_BIN_DIR="$PYMONGO_BIN_DIR"
7876
export UV_TOOL_DIR="$UV_TOOL_DIR"
7977
export UV_CACHE_DIR="$UV_CACHE_DIR"
8078
export UV_TOOL_BIN_DIR="$DRIVERS_TOOLS_BINARIES"
81-
export PATH="$PATH"
79+
export PATH="$MONGODB_BINARIES:$DRIVERS_TOOLS_BINARIES:$PYMONGO_BIN_DIR:$PATH"
8280
# shellcheck disable=SC2154
8381
export PROJECT="${project:-mongo-python-driver}"
8482
export PIP_QUIET=1

.evergreen/scripts/setup-dev-env.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ set -eu
55
HERE=$(dirname ${BASH_SOURCE:-$0})
66
pushd "$(dirname "$(dirname $HERE)")" > /dev/null
77

8+
echo "PATH=$PATH"
9+
810
# Source the env files to pick up common variables.
911
if [ -f $HERE/env.sh ]; then
1012
source $HERE/env.sh
@@ -14,6 +16,9 @@ if [ -f $HERE/test-env.sh ]; then
1416
source $HERE/test-env.sh
1517
fi
1618

19+
echo "PATH=$PATH"
20+
exit 1
21+
1722
# Ensure dependencies are installed.
1823
bash $HERE/install-dependencies.sh
1924

0 commit comments

Comments
 (0)