From 06fbb91f128fbb45bd3527463d0ad21838db8ca5 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 16 Jul 2018 14:44:34 +0200 Subject: [PATCH] build: added --recursive to git clone in Makefile and script/bootstrap --- Makefile | 2 +- script/bootstrap | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2d11f28ea..32a61bca2 100644 --- a/Makefile +++ b/Makefile @@ -34,4 +34,4 @@ libtrezor.a: .PHONY: vendor vendor: - git submodule update --init + git submodule update --init --recursive diff --git a/script/bootstrap b/script/bootstrap index 4f687bf0e..500e9a061 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -7,4 +7,4 @@ set -e cd "$(dirname "$0")/.." -git submodule update --init +git submodule update --init --recursive