Skip to content

Commit

Permalink
Actually fix build regression from #102
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Sep 24, 2023
1 parent c3f0c4c commit e7dc35f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion support/buildbot/bootstrap.pl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,14 @@
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();
Expand Down

0 comments on commit e7dc35f

Please sign in to comment.