From 21c219abf7ead376ba8fe6f55cb58d3985523ada Mon Sep 17 00:00:00 2001 From: oech3 <79379754+oech3@users.noreply.github.com> Date: Fri, 14 Nov 2025 18:01:56 +0900 Subject: [PATCH] CICD.yml: Remove if for .exe --- .github/workflows/CICD.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/CICD.yml b/.github/workflows/CICD.yml index e06156822..dd09756b0 100644 --- a/.github/workflows/CICD.yml +++ b/.github/workflows/CICD.yml @@ -1263,13 +1263,8 @@ jobs: - name: Verify stub binaries exist shell: bash run: | - if [ "${{ runner.os }}" = "Windows" ]; then - test -f target/debug/chcon.exe - test -f target/debug/runcon.exe - else - test -f target/debug/chcon - test -f target/debug/runcon - fi + test -f target/debug/chcon || test -f target/debug/chcon.exe + test -f target/debug/runcon || test -f target/debug/runcon.exe - name: Verify workspace builds with stubs run: cargo build --features ${{ matrix.job.features }}