File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,17 +13,17 @@ jobs:
1313
1414 - name : Install the latest version of Arduino CLI
1515 run : |
16- curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh
16+ curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh
1717
1818 - name : Update Arduino cores and libraries and install Zephyr core
1919 run : |
20- ./ arduino-cli update
21- ./ arduino-cli core install arduino:zephyr
20+ arduino-cli update
21+ arduino-cli core install arduino:zephyr
2222
2323 - name : Verify sketches
2424 run : |
2525 SKETCHES=$(find . -name "*.ino")
2626 for SKETCH in $SKETCHES; do
2727 echo "Verifying $SKETCH"
28- ./ arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
28+ arduino-cli compile --fqbn arduino:zephyr:unoq "$SKETCH"
2929 done
You can’t perform that action at this time.
0 commit comments