Skip to content

Commit

Permalink
Update .gitmodules to use https on all repos (#117)
Browse files Browse the repository at this point in the history
Quality of life improvement: update submodules urls to https to avoid
git errors

## Motivation

After cloning the repo and attempting to update the modules you get "The
authenticity of host 'github.com (---)' can't be established" which
stems from the 3 submodules that were not using https.


## Solution


Updated those submodules urls to include https. '''git module update'''
runs smoothly now
  • Loading branch information
JoaoMorais96 authored Apr 4, 2024
1 parent 1dc8bdd commit d643865
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
url = https://github.com/openzeppelin/openzeppelin-contracts
[submodule "lib/openzeppelin-contracts-upgradeable"]
path = lib/openzeppelin-contracts-upgradeable
url = git@github.com:OpenZeppelin/openzeppelin-contracts-upgradeable.git
url = https://github.com/OpenZeppelin/openzeppelin-contracts-upgradeable
[submodule "lib/ERC721A-Upgradeable"]
path = lib/ERC721A-Upgradeable
url = git@github.com:chiru-labs/ERC721A-Upgradeable.git
url = https://github.com/chiru-labs/ERC721A-Upgradeable
[submodule "lib/ds-test"]
path = lib/ds-test
url = https://github.com/dapphub/ds-test
Expand Down

0 comments on commit d643865

Please sign in to comment.