Skip to content

Commit 7ab3d07

Browse files
committed
Guard cd to potentially missing DET repo
1 parent 480aec8 commit 7ab3d07

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.mci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,11 @@ functions:
213213
script: |
214214
set -o errexit
215215
set -o pipefail
216-
cd drivers-evergreen-tools/.evergreen/orchestration
217-
. ../venv-utils.sh
218-
if venvactivate venv; then
219-
mongo-orchestration stop
216+
if cd drivers-evergreen-tools/.evergreen/orchestration; then
217+
. ../venv-utils.sh
218+
if venvactivate venv; then
219+
mongo-orchestration stop
220+
fi
220221
fi
221222
222223
"install_c_driver":

0 commit comments

Comments
 (0)