Skip to content

Commit

Permalink
make: have git submodule update be recursive
Browse files Browse the repository at this point in the history
libwally added libsecp256k1 as a submodule, so we need to recursively
update the submodules now
  • Loading branch information
niftynei authored and cdecker committed Dec 11, 2020
1 parent 68d08fc commit 1ca2c66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ Clone lightning:
```
git clone https://github.com/ElementsProject/lightning.git
cd lightning
git submodule update --init
git submodule update --init --recursive
```
Build and install:
```
Expand Down
2 changes: 1 addition & 1 deletion tools/refresh-submodules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@ if [ "$(git submodule status "$@" | grep -c '^ ')" != $# ]; then
echo Reinitializing submodules "$@" ...
git submodule sync "$@"
rm -rf "$@"
git submodule update --init "$@"
git submodule update --init --recursive "$@"
fi

0 comments on commit 1ca2c66

Please sign in to comment.