Skip to content

Commit 9f6c6a3

Browse files
committed
PYTHON-2990 Use https:// instead of unauthenticated git:// for git clone
1 parent 8b2eb24 commit 9f6c6a3

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
@@ -97,7 +97,7 @@ functions:
9797
# If this was a patch build, doing a fresh clone would not actually test the patch
9898
cp -R ${PROJECT_DIRECTORY}/ $DRIVERS_TOOLS
9999
else
100-
git clone git://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
100+
git clone https://github.com/mongodb-labs/drivers-evergreen-tools.git $DRIVERS_TOOLS
101101
fi
102102
echo "{ \"releases\": { \"default\": \"$MONGODB_BINARIES\" }}" > $MONGO_ORCHESTRATION_HOME/orchestration.config
103103

.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
@@ -83,7 +83,7 @@ If you'd rather install directly from the source (i.e. to stay on the
8383
bleeding edge), install the C extension dependencies then check out the
8484
latest source from GitHub and install the driver from the resulting tree::
8585

86-
$ git clone git://github.com/mongodb/mongo-python-driver.git pymongo
86+
$ git clone https://github.com/mongodb/mongo-python-driver.git pymongo
8787
$ cd pymongo/
8888
$ python3 setup.py install
8989

0 commit comments

Comments
 (0)