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 e914680 commit e58c6c0Copy full SHA for e58c6c0
.evergreen/scripts/install-dependencies.sh
@@ -25,12 +25,12 @@ function _pip_install() {
25
if [ "Windows_NT" = "${OS:-}" ]; then
26
_suffix=".exe"
27
fi
28
- ln -s "$(which $2)" $_BIN_DIR/${2}${_suffix}
+ ln -s "$(which $2)" $PYMONGO_BIN_DIR/${2}${_suffix}
29
# uv also comes with a uvx binary.
30
if [ $2 == "uv" ]; then
31
- ln -s "$(which uvx)" $_BIN_DIR/uvx${_suffix}
+ ln -s "$(which uvx)" $PYMONGO_BIN_DIR/uvx${_suffix}
32
33
- echo "Installed to ${_BIN_DIR}"
+ echo "Installed to ${PYMONGO_BIN_DIR}"
34
echo "Installing $2 using pip... done."
35
}
36
0 commit comments