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 0b21d3b commit 1e2e83aCopy full SHA for 1e2e83a
.github/workflows/main.yml
@@ -38,4 +38,9 @@ jobs:
38
- name: Install PlatformIO Core
39
run: |
40
python3 get-platformio.py
41
- ~/.platformio/penv/bin/pio system info
+ if [ "$RUNNER_OS" == "Windows" ]; then
42
+ ~/.platformio/penv/Scripts/pio.exe system info
43
+ else
44
+ ~/.platformio/penv/bin/pio system info
45
+ fi
46
+ shell: bash
0 commit comments