Browse Source

make: have `git submodule update` be recursive

libwally added libsecp256k1 as a submodule, so we need to recursively
update the submodules now
fix-mocks
niftynei 4 years ago
committed by Christian Decker
parent
commit
1ca2c66c54
  1. 2
      doc/INSTALL.md
  2. 2
      tools/refresh-submodules.sh

2
doc/INSTALL.md

@ -385,7 +385,7 @@ Clone lightning:
``` ```
git clone https://github.com/ElementsProject/lightning.git git clone https://github.com/ElementsProject/lightning.git
cd lightning cd lightning
git submodule update --init git submodule update --init --recursive
``` ```
Build and install: Build and install:
``` ```

2
tools/refresh-submodules.sh

@ -38,5 +38,5 @@ if [ "$(git submodule status "$@" | grep -c '^ ')" != $# ]; then
echo Reinitializing submodules "$@" ... echo Reinitializing submodules "$@" ...
git submodule sync "$@" git submodule sync "$@"
rm -rf "$@" rm -rf "$@"
git submodule update --init "$@" git submodule update --init --recursive "$@"
fi fi

Loading…
Cancel
Save