Commit 5252c82f authored by Mark Tyneway's avatar Mark Tyneway

monorepo: submodules makefile

Update the `submodules` recipe in the makefile.
Trying to remove ignoring the command when in CI
because it looks for a github actions env var but
we now run in circleci so its possible that its
tech debt. Will add that check back in if it breaks
ci.

Fixes https://github.com/ethereum-optimism/optimism/issues/8132
parent 079a99b0
...@@ -40,11 +40,7 @@ golang-docker: ...@@ -40,11 +40,7 @@ golang-docker:
.PHONY: golang-docker .PHONY: golang-docker
submodules: submodules:
# CI will checkout submodules on its own (and fails on these commands) git submodule update --init --recursive
if [ -z "$$GITHUB_ENV" ]; then \
git submodule init; \
git submodule update --recursive; \
fi
.PHONY: submodules .PHONY: submodules
op-bindings: op-bindings:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment