Fix Windows CI: use bash shell for git submodule commands

On Windows MSYS2 runners, the default shell is 'msys2' which doesn't
understand 'git submodule' commands the same way. Adding shell: bash
forces the step to use bash, which properly executes git and finds
submodule content.

Affected jobs: build-windows-qt, build-windows-daemon
This commit is contained in:
Krystie
2026-04-30 01:27:08 -07:00
parent 6c56e41e82
commit 64f810b7ba
+2
View File
@@ -106,6 +106,7 @@ jobs:
- name: Init submodules
run: git submodule update --init --recursive
shell: bash
- uses: msys2/setup-msys2@v2
with:
@@ -263,6 +264,7 @@ jobs:
- name: Init submodules
run: git submodule update --init --recursive
shell: bash
- uses: msys2/setup-msys2@v2
with: