gitmodules: Consistently remove trailing slash
The forms with or without a trailing slash are interchangeable via https, but the form with a trailing slash doesn't work if you have git configured to always access Github repositories via ssh, using something like: git config --global url."git+ssh://git@github.com/".insteadOf "https://github.com/" Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
42e1584e71
commit
a59b6905da
1 changed files with 3 additions and 3 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
@ -1,9 +1,9 @@
|
||||||
[submodule "wine"]
|
[submodule "wine"]
|
||||||
path = wine
|
path = wine
|
||||||
url = https://github.com/ValveSoftware/wine/
|
url = https://github.com/ValveSoftware/wine
|
||||||
[submodule "dxvk"]
|
[submodule "dxvk"]
|
||||||
path = dxvk
|
path = dxvk
|
||||||
url = https://github.com/ValveSoftware/dxvk/
|
url = https://github.com/ValveSoftware/dxvk
|
||||||
[submodule "openvr"]
|
[submodule "openvr"]
|
||||||
path = openvr
|
path = openvr
|
||||||
url = https://github.com/ValveSoftware/openvr
|
url = https://github.com/ValveSoftware/openvr
|
||||||
|
@ -12,7 +12,7 @@
|
||||||
url = https://github.com/liberationfonts/liberation-fonts
|
url = https://github.com/liberationfonts/liberation-fonts
|
||||||
[submodule "FAudio"]
|
[submodule "FAudio"]
|
||||||
path = FAudio
|
path = FAudio
|
||||||
url = https://github.com/FNA-XNA/FAudio/
|
url = https://github.com/FNA-XNA/FAudio
|
||||||
[submodule "gstreamer"]
|
[submodule "gstreamer"]
|
||||||
path = gstreamer
|
path = gstreamer
|
||||||
url = https://gitlab.freedesktop.org/gstreamer/gstreamer.git
|
url = https://gitlab.freedesktop.org/gstreamer/gstreamer.git
|
||||||
|
|
Loading…
Reference in a new issue