Reformat setup_ci command line.

This prevents setup_ci from running twice on Cygwin due to different
parsing of the command line since on Windows it's run via Powershell.
This commit is contained in:
Darren Tucker
2026-06-02 23:28:52 +10:00
parent 60343e46d5
commit c9ebebb22f
+1 -2
View File
@@ -140,8 +140,7 @@ jobs:
- uses: actions/checkout@main
- name: setup CI system
run: |
timeout 1200 sh .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }} || \
sh .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }}
sh -c "timeout 1200 .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }} || .github/setup_ci.sh ${{ matrix.config }} ${{ matrix.target }}"
env:
CYGWIN_SETUP: ${{ steps.cygwin_install.outputs.setup }}
- name: autoreconf