From 148706b51776ee7317c1dd2a6aa324f56ff87f49 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sat, 7 Jan 2023 19:22:38 +0000 Subject: [PATCH] Use spaces instead of tabs. Tabs don't work over SSH? --- tools/bin/td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bin/td b/tools/bin/td index bd86bba..a3be68d 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -94,7 +94,7 @@ recipe_build() { if [ $(mod_time "$src") -ge $(mod_time "$obj") ]; then if [ -t 1 ]; then - printf "CC %s\t\t\t\r" "$(basename $obj)" + printf "CC %s%*c\r" "$(basename $obj)" "16" " " else echo "CC $(basename $obj)" fi