Indent here doc in usage() of bin/kaledoscope-builder. Issue #299.

pull/305/head
Chris King-Parra 7 years ago committed by Gergely Nagy
parent f094bdaa4e
commit 96f3f18aaf

@ -41,6 +41,7 @@ firmware_size () {
echo "${output}" | sed -e "s/\(Program:.*\)(\([0-9\.]*%\) Full)/\1(${PERCENT}% Full)/"
}
find_sketch () {
SKETCH="${SKETCH:-${DEFAULT_SKETCH}}"
LIBRARY="${LIBRARY:-${SKETCH}}"
@ -294,43 +295,43 @@ EOF
}
usage () {
cat <<EOF
Usage: $0 SKETCH commands...
cat <<- EOF
Usage: $0 SKETCH commands...
Runs all of the commands in the context of the Sketch.
Runs all of the commands in the context of the Sketch.
Available commands:
Available commands:
help
This help screen.
help
This help screen.
compile
Compiles the sketch.
compile
Compiles the sketch.
size
Reports the size of the compiled sketch.
size
Reports the size of the compiled sketch.
build
Runs compile and report-size.
build
Runs compile and report-size.
clean
Cleans up the output directory.
clean
Cleans up the output directory.
size-map
Displays the size map for the sketch.
size-map
Displays the size map for the sketch.
disassemble
Decompile the sketch.
disassemble
Decompile the sketch.
reset-device
Reset the device.
reset-device
Reset the device.
flash
Flashes the firmware using avrdude.
flash
Flashes the firmware using avrdude.
build-all
Build all Sketches we can find.
EOF
build-all
Build all Sketches we can find.
EOF
}
help () {

Loading…
Cancel
Save