From 0aca6332ee5865dbf4717235cbf9f5e8e79dddc3 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Sun, 24 Dec 2023 09:04:36 +0000 Subject: lbmk scripts: shorter code lines while seemingly pedantic, this does actually make code easier to read. mostly just switching to shorthand for variable names, where no expansions or patterns are used Signed-off-by: Leah Rowe --- include/err.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/err.sh') diff --git a/include/err.sh b/include/err.sh index 1aeebcbb..3c596b17 100755 --- a/include/err.sh +++ b/include/err.sh @@ -29,7 +29,7 @@ check_git() git_err() { - printf "You need to set git name/email, like so:\n%s\n\n" "${1}" 1>&2 + printf "You need to set git name/email, like so:\n%s\n\n" "$1" 1>&2 fail "Git name/email not configured" || \ err "Git name/email not configured" } -- cgit v1.2.1