Skip to content

Commit 1ca2c66

Browse files
niftyneicdecker
authored andcommitted
make: have git submodule update be recursive
libwally added libsecp256k1 as a submodule, so we need to recursively update the submodules now
1 parent 68d08fc commit 1ca2c66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/INSTALL.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ Clone lightning:
385385
```
386386
git clone https://github.com/ElementsProject/lightning.git
387387
cd lightning
388-
git submodule update --init
388+
git submodule update --init --recursive
389389
```
390390
Build and install:
391391
```

tools/refresh-submodules.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,5 @@ if [ "$(git submodule status "$@" | grep -c '^ ')" != $# ]; then
3838
echo Reinitializing submodules "$@" ...
3939
git submodule sync "$@"
4040
rm -rf "$@"
41-
git submodule update --init "$@"
41+
git submodule update --init --recursive "$@"
4242
fi

0 commit comments

Comments
 (0)