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 }}