summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2023-05-14 22:43:36 +0100
committerLeah Rowe <leah@libreboot.org>2023-05-14 22:46:59 +0100
commit8b4c1c165236b529b488e50960277b3e949fc13e (patch)
treef75d344e8663af9f70db0821be6e41ddf3672110
parent1388cccbc730bb6240ccd3f2b8e9c30996f6b864 (diff)
download/coreboot: consistent tab indentation
-rwxr-xr-xresources/scripts/download/coreboot30
1 files changed, 15 insertions, 15 deletions
diff --git a/resources/scripts/download/coreboot b/resources/scripts/download/coreboot
index 821ee321..f1998958 100755
--- a/resources/scripts/download/coreboot
+++ b/resources/scripts/download/coreboot
@@ -34,21 +34,21 @@ usage()
{
progname="./download coreboot"
printf "Usage:\n"
- printf "\t%s # %s\n" \
- "${progname}" \
- "Download coreboot for all the boards"
+ printf "\t%s\t\t\t# %s\n" \
+ "${progname}" \
+ "Download coreboot for all the boards"
printf "\t%s [board [board] ...] # %s\n" \
- "${progname}" \
- "Download coreboot for the given boards"
- printf "\t%s --list-boards # %s\n" \
- "${progname}" \
- "Prints this help"
- printf "\t%s --help # %s\n" \
- "${progname}" \
- "List supported boards"
- printf "\t%s --help # %s\n" \
- "${progname}" \
- "Prints this help"
+ "${progname}" \
+ "Download coreboot for the given boards"
+ printf "\t%s --list-boards\t# %s\n" \
+ "${progname}" \
+ "Prints this help"
+ printf "\t%s --help\t\t# %s\n" \
+ "${progname}" \
+ "List supported boards"
+ printf "\t%s --help\t\t# %s\n" \
+ "${progname}" \
+ "Prints this help"
}
# In this script, set -u is used to check for undefined variables, and
@@ -197,7 +197,7 @@ downloadfor() {
# extra.sh on a per-board basis
# In fact, extra.sh can be used for anything you want.
if [ -f "../../resources/coreboot/${board}/extra.sh" ]; then
- "../../resources/coreboot/${board}/extra.sh" || touch ../../build_error
+ "../../resources/coreboot/${board}/extra.sh" || touch ../../build_error
if [ -f ../../build_error ]; then
cd ../../; return 1
fi