From 82880dfc96e03ed6db36ec0d17bd8b4bd9a2042e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 24 Jan 2023 11:59:08 -1000 Subject: [PATCH] imp: install: align install status list --- hledger-install/hledger-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hledger-install/hledger-install.sh b/hledger-install/hledger-install.sh index b6da158fc..10b828f9a 100755 --- a/hledger-install/hledger-install.sh +++ b/hledger-install/hledger-install.sh @@ -851,7 +851,7 @@ has_cmd_version() { # Show a command's presence in $PATH, and its version if present. print_cmd_version() { if [[ $(cmd_location "$1") ]]; then - echo "$1" $(cmd_version "$1") is installed at $(cmd_location "$1") + printf "%-28s is installed at %s\n" "$1 $(cmd_version "$1")" $(cmd_location "$1") else echo "$1 is not found" fi