From fa38977813449bff9bc0e9c91d5bb7f62dcbe44a Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 6 Jun 2022 17:15:05 +0200 Subject: [PATCH] build: functions.bash: Checkout git submodules --- build/functions.bash | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/functions.bash b/build/functions.bash index 1c93d7d..7711c64 100644 --- a/build/functions.bash +++ b/build/functions.bash @@ -34,6 +34,9 @@ function build_git_repo() sed -e "s/VERSION_PLACEHOLDER/$VERSION_CHANGELOG/g" -i ./debian/changelog DATE_CHANGELOG=$(date -R) sed -e "s/DATE_PLACEHOLDER/$DATE_CHANGELOG/g" -i ./debian/changelog + + git submodule init + git submodule update dpkg-buildpackage --no-sign cp -a ../*.deb "$TARGET_DIR"/ }