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.
2 parents b41fb6b + e721599 commit 7e3260aCopy full SHA for 7e3260a
.github/workflows/push.yml
@@ -129,7 +129,7 @@ jobs:
129
echo "Library src file found: $file"
130
lib=$(dirname $(dirname $file))
131
lib_sketches+=$(find $lib/examples -name *.ino)
132
- sketches+=$lib_sketches
+ sketches+="$lib_sketches "
133
echo "Library sketches: $lib_sketches"
134
else
135
# If file is in a example folder but it is not a sketch, find all sketches in the current directory
@@ -138,10 +138,12 @@ jobs:
138
sketches+=$sketch
139
echo "Sketch in example folder: $sketch"
140
fi
141
+ echo ""
142
done
143
144
# Remove duplicates
145
sketches=$(echo $sketches | tr ' ' '\n' | sort | uniq)
146
147
echo "Unique sketches: $sketches"
148
149
for sketch in $sketches; do
0 commit comments