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 3d42b9f commit 496ba37Copy full SHA for 496ba37
.github/workflows/package_core.yml
@@ -210,7 +210,7 @@ jobs:
210
wget -nv https://raw.githubusercontent.com/arduino/arduino-examples/refs/heads/main/examples/01.Basics/Blink/Blink.ino -P Blink/
211
echo "ALL_LIBRARIES<<EOF" >> $GITHUB_ENV
212
find ArduinoCore-zephyr/libraries/ -name library.properties | while read -r propfile; do
213
- grep '^depends=' "$propfile" | cut -d= -f2 | tr ',' '\n' | while read -r dep; do
+ grep '^depends=' "$propfile" | cut -d= -f2- | tr ',' '\n' | while read -r dep; do
214
[ -z "$dep" ] || printf " - name: \"%s\"\n" "$dep" >> $GITHUB_ENV
215
done
216
printf " - source-path: \"%s\"\n" $(find ArduinoCore-zephyr/libraries/ -maxdepth 1 -mindepth 1 -type d) >> $GITHUB_ENV
0 commit comments