From 8c080431797cad48d5135ba5b2e5561a2ff81967 Mon Sep 17 00:00:00 2001 From: Andrew Robbins Date: Thu, 25 Apr 2019 23:34:29 -0400 Subject: libs/project: Remove extraneous newlines in header/footer The extra newlines make actions with no output look strange. --- libs/project | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libs') diff --git a/libs/project b/libs/project index e5088265..8f4ef233 100755 --- a/libs/project +++ b/libs/project @@ -150,7 +150,7 @@ project_action() { ( set +e - printf '%s\n\n' "Project $project $action (with ${arguments:-no argument})" + printf '%s\n' "Project $project $action (with ${arguments:-no argument})" ( "$action" "$@" @@ -159,9 +159,9 @@ project_action() { local -i exit_status=$? if ((exit_status)); then - printf 1>&2 '\n%s\n' "Project $project $action (with ${arguments:-no argument}) failed" + printf 1>&2 '%s\n' "Project $project $action (with ${arguments:-no argument}) failed" else - printf '\n%s\n' "Project $project $action (with ${arguments:-no argument}) completed" + printf '%s\n' "Project $project $action (with ${arguments:-no argument}) completed" fi exit $exit_status -- cgit v1.2.3-70-g09d2