Use spaces instead of tabs. Tabs don't work over SSH?

This commit is contained in:
Jordan Bancino 2023-01-07 19:22:38 +00:00
parent 472a6ccbf7
commit 148706b517

View file

@ -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