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 cc30835 + 352337b commit 3bf301fCopy full SHA for 3bf301f
.github/scripts/set_push_chunks.sh
@@ -28,11 +28,11 @@ elif [[ $LIB_CHANGED == 'true' ]]; then
28
sketches="$networking_sketches $fs_sketches"
29
for file in $LIB_FILES; do
30
lib=$(echo $file | awk -F "/" '{print $1"/"$2}')
31
- if [[ "$file" == "*.ino" ]]; then
+ if [[ "$file" == *.ino ]]; then
32
# If file ends with .ino, add it to the list of sketches
33
echo "Sketch found: $file"
34
sketches+="$file "
35
- elif [[ "$file" == "$lib/src/*" ]]; then
+ elif [[ "$file" == "$lib/src/"* ]]; then
36
# If file is inside the src directory, find all sketches in the lib/examples directory
37
echo "Library src file found: $file"
38
if [[ -d $lib/examples ]]; then
0 commit comments