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 9f4b7ed commit 3a14140Copy full SHA for 3a14140
.github/workflows/test.yml
@@ -55,7 +55,7 @@ jobs:
55
run: |
56
cmake -S . -B build -G "${{ matrix.generator }}" -D PICO_SDK_PATH="${{ github.workspace }}/pico-sdk" ${{ matrix.libusb && '-D PICOTOOL_NO_LIBUSB=1' || '' }} ${{ matrix.compile && '-D USE_PRECOMPILED=false' || '' }}
57
cmake --build build
58
- ${{ runner.os == 'Windows' && '' || 'sudo' }} cmake --install build
+ ${{ runner.os != 'Windows' && 'sudo' || '' }} cmake --install build
59
- name: Add to path (Windows)
60
if: runner.os == 'Windows'
61
run: echo "C:\Program Files (x86)\picotool\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
0 commit comments