Skip to content

Commit

Permalink
Modify .gitmodules to use https for Templates to resolve permission i… (
Browse files Browse the repository at this point in the history
MonoGame#8598)

Fixes MonoGame#8593


### Description of Change


Set the url protocol to `https` for consistency with all other entries
and to correct permission errors on non-configured git clients:

> fatal: clone of 'git@github.com:MonoGame/MonoGame.Templates.git'
git@github.com: Permission denied (publickey).

```
[submodule "external/MonoGame.Templates"]
	path = external/MonoGame.Templates
	url = https://github.com/MonoGame/MonoGame.Templates.git

```
  • Loading branch information
MonogameGuy authored Dec 17, 2024
1 parent 29f3218 commit d2edb55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@
url = https://github.com/LunarG/VulkanMemoryAllocator.git
[submodule "external/MonoGame.Templates"]
path = external/MonoGame.Templates
url = git@github.com:MonoGame/MonoGame.Templates.git
url = https://github.com/MonoGame/MonoGame.Templates.git

0 comments on commit d2edb55

Please sign in to comment.