Skip to content

Commit f5f28e3

Browse files
committed
🤖 TEST: fix for #95
1 parent f0f4661 commit f5f28e3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

‎.gp/bash/third-party/bash-spinner/spinner.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ function _spinner() {
4949
# start spinner
5050
i=1
5151
sp='\|/-'
52-
delay=${SPINNER_DELAY:-0.05}
52+
delay=${SPINNER_DELAY:-0.15}
5353

5454
while :
5555
do
56-
printf "\b${colors[$(($i % 4))]}${sp:i++%${#sp}:1}"&& printf "$nc"
56+
#printf "\b${colors[$(($i % 4))]}${sp:i++%${#sp}:1}"&& printf "$nc"
57+
printf "\b${sp:i++%${#sp}:1}"
5758
sleep $delay
5859
done
5960
;;

0 commit comments

Comments
 (0)