Skip to content

Commit

Permalink
try with fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
blink1073 committed Sep 4, 2024
1 parent a15a546 commit 8623092
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .evergreen/start-orchestration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ echo "Creating virtual environment 'venv'..."
venvcreate "${PYTHON:?}" venv
echo "Creating virtual environment 'venv'... done."

# Install from github to get the latest mongo-orchestration.
python -m pip install -q --upgrade 'https://github.com/mongodb/mongo-orchestration/archive/master.tar.gz'
# Install from github to get the latest mongo-orchestration, fall back on published wheel.
python -m pip install -q --upgrade 'https://github.com/mongodb/mongo-orchestration/archive/master.tar.gz' || python -m pip install -q --upgrade mongo-orchestration
python -m pip list
cd $DRIVERS_TOOLS

Expand Down

0 comments on commit 8623092

Please sign in to comment.