Skip to content

Commit fc4098f

Browse files
committed
sketch_utils.sh: Sort the result of find to have the same output on
all plateforms. Signed-off-by: Abdelatif Guettouche <[email protected]>
1 parent 7dcaadc commit fc4098f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/scripts/sketch_utils.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function count_sketches(){ # count_sketches <path> <target>
4747
return 0
4848
fi
4949

50-
local sketches=$(find $path -name *.ino)
50+
local sketches=$(find $path -name *.ino | sort)
5151
local sketchnum=0
5252
for sketch in $sketches; do
5353
local sketchdir=$(dirname $sketch)

0 commit comments

Comments
 (0)