Skip to content

Commit fa2d97a

Browse files
pedantic fixes
1 parent 0885da7 commit fa2d97a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ function add_to_manifest {
5353
# We will use the optional MPCONFIG_FILE argument to determine if we should add this line
5454

5555
if [ -n "$MPCONFIG_FILE" ]; then
56+
echo "Attempting to add frozen manifest line to $MPCONFIG_FILE for $BOARD"
57+
5658
if [[ $MPCONFIG_FILE == *.mk ]]; then
5759
# e.g. for TEENSY which uses mpconfigboard.mk instead of mpconfigboard.cmake
58-
echo "Adding frozen manifest line to mpconfigboard.mk for $BOARD"
5960
printf "\nFROZEN_MANIFEST ?= \$(BOARD_DIR)/manifest.py" >> ${BOARD_DIR}/$MPCONFIG_FILE
6061
elif [[ $MPCONFIG_FILE == *.cmake ]]; then
61-
echo "Adding frozen manifest line to mpconfigboard.cmake for $BOARD"
6262
printf "\nset(MICROPY_FROZEN_MANIFEST \"\${MICROPY_BOARD_DIR}/manifest.py\")" >> ${BOARD_DIR}/$MPCONFIG_FILE
6363
fi
6464
fi
@@ -73,7 +73,7 @@ function add_to_manifest {
7373
cat ${BOARD_DIR}/manifest.py
7474
}
7575

76-
# Adds the frozen data filesystem to the boot.py file for the given port
76+
# Adds the frozen data filesystem to the _boot.py file for the given port
7777
# Options:
7878
# $1: Port name
7979
# $2: Frozen data file path

0 commit comments

Comments
 (0)