From 5b11083c9b595b6ae3bd94bc8408cb76800f7888 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?benjamin=20melan=C3=A7on?= Date: Wed, 18 Mar 2020 09:50:30 -0400 Subject: [PATCH] Switch to using https not SSH for cloning submodule repository This should fix this error: Cloning into error: cannot run ssh: No such file or directory fatal: unable to fork When running GitLab CI to deploy the static site --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 7d60b05..6e3d3be 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ [submodule "web/themes/reveal-hugo"] - path = web/themes/reveal-hugo - url = git@github.com:dzello/reveal-hugo.git + path = web/themes/reveal-hugo + url = https://github.com/dzello/reveal-hugo.git