Skip to content

Commit 9b87a58

Browse files
committed
step
1 parent 645a94d commit 9b87a58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/package_core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,11 +209,11 @@ jobs:
209209
mkdir Blink/
210210
wget -nv https://raw.githubusercontent.com/arduino/arduino-examples/refs/heads/main/examples/01.Basics/Blink/Blink.ino -P Blink/
211211
echo "ALL_LIBRARIES<<EOF" >> $GITHUB_ENV
212-
find ArduinoCore/libraries/ -name library.properties | while read -r propfile; do
212+
find ArduinoCore-zephyr/libraries/ -name library.properties | while read -r propfile; do
213213
grep '^depends=' "$propfile" | cut -d= -f2 | tr ',' '\n' | while read -r dep; do
214214
printf " - name: %s\n" "$dep" | tee -a $GITHUB_ENV
215215
done
216-
printf " - source_path: %s\n" $(find ArduinoCore/libraries/ -maxdepth 1 -mindepth 1 -type d) | tee -a $GITHUB_ENV
216+
printf " - source_path: %s\n" $(find ArduinoCore-zephyr/libraries/ -maxdepth 1 -mindepth 1 -type d) | tee -a $GITHUB_ENV
217217
done
218218
echo "EOF" >> $GITHUB_ENV
219219

0 commit comments

Comments
 (0)