mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-21 19:20:39 +00:00
7 lines
194 B
Bash
Executable File
7 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
# Docker hub does a recursive clone, then checks the branch out,
|
|
# so when a PR adds a submodule (or updates it), it fails.
|
|
git submodule update --init --recursive
|
|
|
|
git fetch --tags
|