From eac5f43b706d23857dfe8bf70228f4a426bf43ce Mon Sep 17 00:00:00 2001 From: Saleem Rashid Date: Mon, 16 Jul 2018 14:08:55 +0100 Subject: [PATCH] fullbuild: Call script/bootstrap before clone (#383) fullbuild would previously fail if the parent repository hadn't initialized submodules yet, due to the use of --reference Fixes #382 --- script/fullbuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/fullbuild b/script/fullbuild index 85b8290a9..99c7dd9e7 100755 --- a/script/fullbuild +++ b/script/fullbuild @@ -62,6 +62,8 @@ main() { local bootloader_commit="$1" local firmware_commit="$2" + script/bootstrap + worktree_setup "$BOOTLOADER_DIR" "$bootloader_commit" worktree_build "$BOOTLOADER_DIR"