realm / realm-core

Core database component for the Realm Mobile Database SDKs
https://realm.io
Apache License 2.0
1.02k stars 165 forks source link

gitmodule url update #4608

Closed sync-by-unito[bot] closed 3 years ago

sync-by-unito[bot] commented 3 years ago

I am working to use AWS codepipeline but unfortunately the url used in the external/catch submodule needs to have .git appended to the url as AWS has troubles sometimes with submodule urls that do not end in .git . Following link has some explanation https://stackoverflow.com/questions/53785769/aws-codebuild-error-on-download-source-client-error-repository-not-found-for-p|url

file: realm-object-store/.gitmodules

From:

[submodule "external/catch"] path = external/catch url = https://github.com/catchorg/Catch2

To

[submodule "external/catch"] path = external/catch url = https://github.com/catchorg/Catch2.git

sync-by-unito[bot] commented 3 years ago

➤ On 2020-06-26, Brian Munkholm commented:

Seems like something you could make a PR for perhaps? @kostagr33k