SPINNER="/-|" # Defined but never used
show_progress() {
local spinstr='|/-' # Redefines it locally
Bug: Global variable unused. Also, the progress function might not display correctly because commands in the subshell may produce output that interferes.
SPINNER="/-\|" # Defined but never used
show_progress() {
local spinstr='|/-\' # Redefines it locally
Bug: Global variable unused. Also, the progress function might not display correctly because commands in the subshell may produce output that interferes.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
SPINNER="/-|" # Defined but never used
show_progress() {
local spinstr='|/-' # Redefines it locally
Bug: Global variable unused. Also, the progress function might not display correctly because commands in the subshell may produce output that interferes.
Outright removed the spinner, in favor of section by section progress