Skip to content

Commit

Permalink
Update arduino-test-compile.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaccan authored Feb 24, 2022
1 parent c28d72b commit c0ba093
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arduino-test-compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ for sketch_name in "${SKETCH_NAMES_ARRAY[@]}"; do # Loop over all sketch names
SKETCH_DIR=${SKETCH_PATH##*/} # directory of sketch, must match sketch basename
SKETCH_FILENAME=$(basename $sketch) # complete name of sketch
SKETCH_EXTENSION=${SKETCH_FILENAME##*.} # extension of sketch
SKETCH_BASENAME=${SKETCH_FILENAME%%.*} # name without extension / basename of sketch, must match directory name
SKETCH_BASENAME=${SKETCH_FILENAME%%.$SKETCH_EXTENSION} # name without extension / basename of sketch, must match directory name
echo -e "\n"
if [[ $SKETCHES_EXCLUDE == *"$SKETCH_BASENAME"* ]]; then
echo -e "Skipping $SKETCH_PATH \xe2\x9e\x9e" # Right arrow
Expand Down

0 comments on commit c0ba093

Please sign in to comment.