From bac4cc6fd75f7c14298c2fb9bb4f700c3b79cee3 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Mon, 25 Jul 2022 11:39:13 +0200 Subject: [PATCH] Fixed regressed submodule git protocols refs https://github.com/TryGhost/Ghost/issues/10265 refs https://github.com/TryGhost/Toolbox/issues/354 - I seem to have regressed the referenced Ghost issue during the conversion to a monorepo - this puts the url paths back to relative URLs so it uses whatever protocol the Ghost repo was cloned with --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 623f1dbf5d..87dbe72456 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "ghost/core/content/themes/casper"] path = ghost/core/content/themes/casper - url = https://github.com/TryGhost/Casper/ + url = ../../TryGhost/Casper.git [submodule "ghost/core/core/admin"] path = ghost/core/core/admin - url = https://github.com/TryGhost/Admin/ + url = ../../TryGhost/Admin.git