We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 550425c commit 61dec35Copy full SHA for 61dec35
.evergreen/scripts/configure-env.sh
@@ -106,6 +106,8 @@ if [ -d "${_bin_path}" ]; then
106
if [ "Windows_NT" == "${OS:-}" ]; then
107
_suffix=".exe"
108
fi
109
+ echo "Symlinking binaries from toolchain"
110
+ echo "PATH_EXT=$PATH_EXT"
111
mkdir -p $PYMONGO_BIN_DIR
112
ln -s ${_bin_path}/just${_suffix} $PYMONGO_BIN_DIR/just${_suffix}
113
ln -s ${_bin_path}/uv${_suffix} $PYMONGO_BIN_DIR/uv${_suffix}
.evergreen/scripts/install-dependencies.sh
@@ -10,6 +10,10 @@ if [ -f $HERE/env.sh ]; then
10
. $HERE/env.sh
11
12
13
+echo "PATH_EXT=$PATH_EXT"
14
+echo "PATH=$PATH"
15
+echo "PYMONGO_BIN_DIR=$PYMONGO_BIN_DIR"
16
+exit 1
17
_BIN_DIR=${PYMONGO_BIN_DIR:-$HOME/.local/bin}
18
export PATH="$PATH:${_BIN_DIR}"
19
0 commit comments