From e7dc35f3c8edaf15d07ddedaca9b974070103956 Mon Sep 17 00:00:00 2001 From: Nick Hastings Date: Sun, 24 Sep 2023 13:49:50 -0400 Subject: [PATCH] Actually fix build regression from #102 --- support/buildbot/bootstrap.pl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index 93619eb..43e4434 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -13,8 +13,14 @@ use FindBin; use lib $FindBin::Bin; require 'helpers.pm'; +#Go back to tree root. +my ($result); +chdir(Build::PathFormat('../..')); +$result = `git submodule update --init --recursive`; +print "$result\n"; + #Go back above build dir -chdir(Build::PathFormat('../../..')); +chdir(Build::PathFormat('..')); #Get the source path. our ($root) = getcwd();