From 1ae55e6073ca172528a5454d4fe185df84d5ceb4 Mon Sep 17 00:00:00 2001 From: Esko Dijk Date: Thu, 31 Oct 2024 13:14:32 +0100 Subject: [PATCH] [script] bootstrap now includes a 'git submodule update' to cover the case of updating OTNS2 with 'git pull'. --- script/bootstrap | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/bootstrap b/script/bootstrap index a110b116..c12e745d 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -41,6 +41,9 @@ else exit 1 fi +# Get (first time) or update (after a 'git pull') all submodules. +git submodule update --init + # shellcheck source=script/utils.sh . "$(dirname "$0")"/utils.sh