diff options
author | Leah Rowe <leah@libreboot.org> | 2023-09-10 15:45:56 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-09-10 15:45:56 +0100 |
commit | 669c9770cdd81692f28e3f43fc7aa26a43c354ef (patch) | |
tree | 2438f8e0e9601188668a6ac3949dcf51790d2125 /script/handle/make/config | |
parent | d28ad6aa782108007aad116d02b7f9c7c42fa618 (diff) |
handle/make/config: fix whitespace and 80-line bug
fit in 80 lines, and remove whitespace
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'script/handle/make/config')
-rwxr-xr-x | script/handle/make/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/handle/make/config b/script/handle/make/config index 334e333e..1245fe3f 100755 --- a/script/handle/make/config +++ b/script/handle/make/config @@ -148,9 +148,9 @@ handle_dependencies() if [ ! -d "${codedir}" ]; then if [ "${mode}" = "distclean" ] || \ [ "${mode}" = "crossgcc-clean" ]; then - printf "Directory '%s' does not exist; skipping clean" \ + printf "Directory %s doesn't exist; skipping clean\n" \ "${codedir}" 1>&2 - exit 0 + exit 0 fi ./update project trees "${project}" "${target}" || \ fail "handle_dependencies: can't fetch ${project}/${target}" |