Skip to content

Commit 1e2e83a

Browse files
committed
Fix CI script
1 parent 0b21d3b commit 1e2e83a

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,9 @@ jobs:
3838
- name: Install PlatformIO Core
3939
run: |
4040
python3 get-platformio.py
41-
~/.platformio/penv/bin/pio system info
41+
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

Comments
 (0)