diff mbox series

[yocto-autobuilder2,1/4] docker: Switch RO git URL from git:// to https://

Message ID 20260525210708.2918572-1-yoann.congal@smile.fr
State New
Headers show
Series [yocto-autobuilder2,1/4] docker: Switch RO git URL from git:// to https:// | expand

Commit Message

Yoann Congal May 25, 2026, 9:07 p.m. UTC
From: Yoann Congal <yoann.congal@smile.fr>

git:// are deprecated (and currently don't work)

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
---
 docker/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 3d6be54..0a2777e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -108,8 +108,8 @@  RUN sed -i \
         -e "s/^\(workers *=.*\).*/\1 + [f\"local-worker-extra-{i}\" for i in range(1, 9)]/" \
         # Remove workers_bringup from all_workers \
         -e "/^all_workers *=/s/workers_bringup + //" \
-        # Switch from ssh:// URLS to git:// so we do not need any auth \
-        -e "s#ssh://git@push\.\(yoctoproject.org\|openembedded.org\)/#git://git.\1/#" \
+        # Switch from ssh:// URLS to https:// so we do not need any auth \
+        -e "s#ssh://git@push\.\(yoctoproject.org\|openembedded.org\)/#https://git.\1/#" \
         # Use any worker for any release \
         -e '$ a workers_prev_releases = {}' \
         /home/pokybuild/yocto-controller/yoctoabb/config.py && \