We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73d1bce commit 21c219aCopy full SHA for 21c219a
.github/workflows/CICD.yml
@@ -1263,13 +1263,8 @@ jobs:
1263
- name: Verify stub binaries exist
1264
shell: bash
1265
run: |
1266
- if [ "${{ runner.os }}" = "Windows" ]; then
1267
- test -f target/debug/chcon.exe
1268
- test -f target/debug/runcon.exe
1269
- else
1270
- test -f target/debug/chcon
1271
- test -f target/debug/runcon
1272
- fi
+ test -f target/debug/chcon || test -f target/debug/chcon.exe
+ test -f target/debug/runcon || test -f target/debug/runcon.exe
1273
- name: Verify workspace builds with stubs
1274
run: cargo build --features ${{ matrix.job.features }}
1275
0 commit comments