From 9374b56c278e75c8f1aec4d90ae0dea82a6876f5 Mon Sep 17 00:00:00 2001 From: Steve Adams Date: Tue, 3 May 2022 14:09:07 +1000 Subject: [PATCH] Update update-to-head.sh Fix update-to-head to remove git:// protocol as GH has now implemented new security protocols. --- update-to-head.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-to-head.sh b/update-to-head.sh index e4bf19c3..9c8af7ec 100755 --- a/update-to-head.sh +++ b/update-to-head.sh @@ -60,7 +60,7 @@ update_venv ./bin/pip # Get base packages initially, for old or yet incomplete installations for project in $git_projects; do - test -d $project || { echo "Getting $project..."; git clone "git://github.com/pyroscope/$project.git" $project; } + test -d $project || { echo "Getting $project..."; git clone "https://github.com/pyroscope/$project.git" $project; } done # Update source