From fe86a0c1b5fb308c5e98426816a28e2f96a9853c Mon Sep 17 00:00:00 2001 From: anVzdGFtb25 <77651965+anVzdGFtb25@users.noreply.github.com> Date: Sat, 11 May 2024 17:36:56 +0800 Subject: [PATCH] CI: Add --recursive when cloning (#152) --- .github/workflows/build-kernel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-kernel.yml b/.github/workflows/build-kernel.yml index 3274a74e5d..275b1b61db 100644 --- a/.github/workflows/build-kernel.yml +++ b/.github/workflows/build-kernel.yml @@ -173,7 +173,7 @@ jobs: - name: Download kernel source run: | cd $GITHUB_WORKSPACE/kernel_workspace - git clone ${{ env.KERNEL_SOURCE }} -b ${{ env.KERNEL_SOURCE_BRANCH }} android-kernel --depth=1 + git clone --recursive ${{ env.KERNEL_SOURCE }} -b ${{ env.KERNEL_SOURCE_BRANCH }} android-kernel --depth=1 if [[ ${{ env.ADD_LOCALVERSION_TO_FILENAME }} == 'true' ]]; then echo "LOCALVERSION=$(cat android-kernel/localversion)" >> $GITHUB_ENV else