Skip to content

Commit

Permalink
Initialize git submodules on clean run to be able to compile the infr…
Browse files Browse the repository at this point in the history
…a CLI
  • Loading branch information
ggiraldez committed Dec 19, 2024
1 parent d26884a commit bd98e0c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions scripts/_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,9 @@ if ! output=$(

exit 1
fi

if [ ! -d submodules/stack-graphs ]; then
# We declare stack-graphs as our dependency in root's Cargo.toml so we need to
# check it out in order to run `cargo build`
git submodule update
fi

0 comments on commit bd98e0c

Please sign in to comment.