Remove unencrypted git protocol use (#1100)

Because Github removes support for unencrypted git protocol in March 2022, URLs in scripts are changed to use https.

See https://github.blog/2021-09-01-improving-git-protocol-security-github/ for details
This commit is contained in:
AndreasAc
2022-02-23 17:17:02 -08:00
committed by GitHub
parent 8a50d3867c
commit c3ba039a97
3 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ if [ -e /etc/rc.local.backup ]; then
fi
# Fetch Mininet
sudo apt-get -y -qq install git-core openssh-server
git clone git://github.com/mininet/mininet
git clone https://github.com/mininet/mininet
# Optionally check out branch
if [ "$1" != "" ]; then
pushd mininet