Skip to content

Commit

Permalink
Merge PR cosmos#620: Use shallow clone in get-gaia make target
Browse files Browse the repository at this point in the history
And download over HTTPS so that a contributor does not need to be
authenticated to GitHub in order to run the target.

Co-authored-by: Justin Tieri <[email protected]>
  • Loading branch information
mark-rushakoff and jtieri authored Mar 23, 2022
1 parent daeb660 commit e83e943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ lint:

get-gaia:
@mkdir -p ./chain-code/
@git clone --branch $(GAIA_VERSION) git@github.com:cosmos/gaia.git ./chain-code/gaia
@git clone --branch $(GAIA_VERSION) --depth=1 https://github.com/cosmos/gaia.git ./chain-code/gaia

build-gaia:
@./scripts/build-gaia
Expand Down

0 comments on commit e83e943

Please sign in to comment.