File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 46
46
PYMONGO_BIN_DIR=$HOME /cli_bin
47
47
fi
48
48
49
- PATH=" $MONGODB_BINARIES :$DRIVERS_TOOLS_BINARIES :$PYMONGO_BIN_DIR :$PATH "
50
-
51
49
cat << EOT > "$SCRIPT_DIR "/env.sh
52
50
export PROJECT_DIRECTORY="$PROJECT_DIRECTORY "
53
51
export CURRENT_VERSION="$CURRENT_VERSION "
@@ -78,7 +76,7 @@ export PYMONGO_BIN_DIR="$PYMONGO_BIN_DIR"
78
76
export UV_TOOL_DIR="$UV_TOOL_DIR "
79
77
export UV_CACHE_DIR="$UV_CACHE_DIR "
80
78
export UV_TOOL_BIN_DIR="$DRIVERS_TOOLS_BINARIES "
81
- export PATH="$PATH "
79
+ export PATH="$MONGODB_BINARIES : $DRIVERS_TOOLS_BINARIES : $PYMONGO_BIN_DIR : $ PATH "
82
80
# shellcheck disable=SC2154
83
81
export PROJECT="${project:- mongo-python-driver} "
84
82
export PIP_QUIET=1
Original file line number Diff line number Diff line change 5
5
HERE=$( dirname ${BASH_SOURCE:- $0 } )
6
6
pushd " $( dirname " $( dirname $HERE ) " ) " > /dev/null
7
7
8
+ echo " PATH=$PATH "
9
+
8
10
# Source the env files to pick up common variables.
9
11
if [ -f $HERE /env.sh ]; then
10
12
source $HERE /env.sh
@@ -14,6 +16,9 @@ if [ -f $HERE/test-env.sh ]; then
14
16
source $HERE /test-env.sh
15
17
fi
16
18
19
+ echo " PATH=$PATH "
20
+ exit 1
21
+
17
22
# Ensure dependencies are installed.
18
23
bash $HERE /install-dependencies.sh
19
24
You can’t perform that action at this time.
0 commit comments