Skip to content

Commit 2f181d7

Browse files
committed
fix ocsp
1 parent 43b7c83 commit 2f181d7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.evergreen/scripts/configure-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ EOT
7676

7777
# Write the .env file for drivers-tools.
7878
rm -rf $DRIVERS_TOOLS
79-
git clone --branch aws-output-file https://github.com/blink1073/drivers-evergreen-tools.git $DRIVERS_TOOLS
79+
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
8080

8181
cat <<EOT > ${DRIVERS_TOOLS}/.env
8282
SKIP_LEGACY_SHELL=1

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
set -eux
44

55
HERE=$(dirname ${BASH_SOURCE:-$0})
6-
pushd "$(dirname "$(dirname $HERE)")" > /dev/null
6+
ROOT=$(dirname "$(dirname $HERE)")
7+
pushd $ROOT > /dev/null
78

89
# Source the env files to pick up common variables.
910
if [ -f $HERE/env.sh ]; then
@@ -26,7 +27,7 @@ fi
2627

2728
# Ensure there is a python venv.
2829
if [ ! -d $BIN_DIR ]; then
29-
. .evergreen/utils.sh
30+
. $ROOT/.evergreen/utils.sh
3031

3132
if [ -z "${PYTHON_BINARY:-}" ]; then
3233
PYTHON_BINARY=$(find_python3)

0 commit comments

Comments
 (0)