diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-30 20:04:02 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-30 20:06:29 +0100 |
commit | 26fc3f13254e38ddd6903e7e18e0945b4e6fe63d (patch) | |
tree | 0baf792f50daea402a9a35dec25bb2aa6e89ac3d /script/handle/make/config | |
parent | 0a0defd3256ff5e29e3b4d129a04fb7546bc31ac (diff) |
general code formatting cleanup in shell scripts
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/handle/make/config')
-rwxr-xr-x | script/handle/make/config | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/script/handle/make/config b/script/handle/make/config index 72cba193..0ae7796f 100755 --- a/script/handle/make/config +++ b/script/handle/make/config @@ -71,9 +71,8 @@ handle_targets() handle_defconfig || fail "error handling config file" done - if [ "${mode}" = "all" ]; then - printf "Done! The files are stored under %s/\n\n" "${elfdir}" - fi + [ "${mode}" = "all" ] || return 0 + printf "Done! The files are stored under %s/\n\n" "${elfdir}" } handle_defconfig() |