CICD.yml: Remove if for .exe

This commit is contained in:
oech3 2025-11-14 18:01:56 +09:00 committed by oech3
parent 73d1bce20d
commit 21c219abf7

View file

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