Skip to content

Commit 0a5bbfb

Browse files
committed
Fixed typo. Escaped ( and ) characters.
1 parent fe2391f commit 0a5bbfb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/linux/arduino_build_sketch.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,23 +22,23 @@ echo
2222
export ARDUINO_INO_FILE=$PRODUCT_SOURCE_DIR/examples/$1/$1.ino
2323

2424
echo ==========================================================================================================
25-
echo Compiling $ARDUINO_INO_FILE (atmega328)
25+
echo Compiling $ARDUINO_INO_FILE \(atmega328\)
2626
echo ==========================================================================================================
2727
cd $PRODUCT_SOURCE_DIR/examples/$1
2828
arduino-cli compile --fqbn "arduino:avr:nano:cpu=atmega328" "$1.ino"
2929
echo
3030
echo
3131

3232
echo ==========================================================================================================
33-
echo Compiling $ARDUINO_INO_FILE (esp8266)
33+
echo Compiling $ARDUINO_INO_FILE \(esp8266\)
3434
echo ==========================================================================================================
3535
cd $PRODUCT_SOURCE_DIR/examples/$1
3636
arduino-cli compile --fqbn "esp8266:esp8266:nodemcuv2" "$1.ino"
3737
echo
3838
echo
3939

4040
echo ==========================================================================================================
41-
echo Compiling $ARDUINO_INO_FILE (esp32)
41+
echo Compiling $ARDUINO_INO_FILE \(esp32\)
4242
echo ==========================================================================================================
4343
cd $PRODUCT_SOURCE_DIR/examples/$1
4444
arduino-cli compile --fqbn "esp32:esp32:esp32" "$1.ino"

0 commit comments

Comments
 (0)