tsort deps to minimize rebuilds

This commit is contained in:
2026-01-26 18:48:53 -06:00
parent ee06f96221
commit d9bd413d9c
2 changed files with 63 additions and 32 deletions

View File

@@ -364,19 +364,14 @@ bash_sort() {
}
_start_spinner() {
local spinChars=(
"-"
'\'
"|"
"/"
)
local spinChars=("⠋" "⠙" "⠹" "⠸" "⠼" "⠴" "⠦" "⠧" "⠇" "⠏")
sleep 1
while true; do
for ((ind = 0; ind < "${#spinChars[@]}"; ind++)); do
echo -ne "${spinChars[${ind}]}" '\b\b'
sleep .25
sleep .125
done
done
}