commit 0642554dcced914c0dc0b319514ba3602e9b3015 parent f97bc206a69bd961ccbce814813d5ec98f1714a7 Author: Brian Mayer <bleemayer@gmail.com> Date: Wed, 15 Jun 2022 19:05:07 -0300 Added end-of-options argument to printf Closes #18 Diffstat:
M | astro | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/astro b/astro @@ -251,7 +251,7 @@ EOF do printf "%*s" "$margin" "" # shellcheck disable=SC2059 - printf "$sty$txt\\n" + printf -- "$sty$txt\\n" done } fi