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 bb01654 commit cf78396Copy full SHA for cf78396
.evergreen/scripts/install-dependencies.sh
@@ -10,8 +10,11 @@ if [ -f $HERE/env.sh ]; then
10
. $HERE/env.sh
11
fi
12
13
-# Set a default bin directory.
14
-PYMONGO_BIN_DIR="${PYMONGO_BIN_DIR:-$HOME/.local/bin}"
+# Set up the default bin directory.
+if [ -z "${PYMONGO_BIN_DIR:-}" ]; then
15
+ PYMONGO_BIN_DIR="$HOME/.local/bin"
16
+ export PATH="$PYMONGO_BIN_DIR:$PATH"
17
+fi
18
19
# Helper function to pip install a dependency using a temporary python env.
20
function _pip_install() {
0 commit comments