From f7d892aa0b44772ccd70786375d3b6a4515af180 Mon Sep 17 00:00:00 2001 From: Christian Lohmaier Date: Wed, 21 Oct 2020 21:51:54 +0200 Subject: gitmodules: use relative paths as using https://git.libreoffice.org breaks the submodule subsription (automatic update in core when something is pushed to the submodules), since gerrit compares the URL with gerrit.canonicalWebUrl, the URL where gerrit itself is found, not what is used as default repository URL Change-Id: I2e4566e69c7e70c463f0aab393d622a6f4d61808 --- .gitmodules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.gitmodules') diff --git a/.gitmodules b/.gitmodules index 61ecfe58b1f0..c441234d6030 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,12 +1,12 @@ [submodule "dictionaries"] path = dictionaries - url = https://git.libreoffice.org/dictionaries + url = ../dictionaries branch = . [submodule "helpcontent2"] path = helpcontent2 - url = https://git.libreoffice.org/help + url = ../help branch = . [submodule "translations"] path = translations - url = https://git.libreoffice.org/translations + url = ../translations branch = . -- cgit