Skip to content

Commit 0eb50fa

Browse files
committed
PYTHON-2990 Use https:// instead of unauthenticated git:// for git clone
(cherry picked from commit 9f6c6a3)
1 parent 3304cd5 commit 0eb50fa

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ functions:
9696
# If this was a patch build, doing a fresh clone would not actually test the patch
9797
cp -R ${PROJECT_DIRECTORY}/ $DRIVERS_TOOLS
9898
else
99-
git clone git://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
99+
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
100100
fi
101101
echo "{ \"releases\": { \"default\": \"$MONGODB_BINARIES\" }}" > $MONGO_ORCHESTRATION_HOME/orchestration.config
102102

.evergreen/perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ functions:
9696
# If this was a patch build, doing a fresh clone would not actually test the patch
9797
cp -R ${PROJECT_DIRECTORY}/ $DRIVERS_TOOLS
9898
else
99-
git clone git://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
99+
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
100100
fi
101101
echo "{ \"releases\": { \"default\": \"$MONGODB_BINARIES\" }}" > $MONGO_ORCHESTRATION_HOME/orchestration.config
102102

doc/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ If you'd rather install directly from the source (i.e. to stay on the
125125
bleeding edge), install the C extension dependencies then check out the
126126
latest source from GitHub and install the driver from the resulting tree::
127127

128-
$ git clone git://github.com/mongodb/mongo-python-driver.git pymongo
128+
$ git clone https://github.com/mongodb/mongo-python-driver.git pymongo
129129
$ cd pymongo/
130130
$ python setup.py install
131131

0 commit comments

Comments
 (0)