Progress Spinner Issues #3

Closed
opened 2026-02-02 15:19:17 -05:00 by jared · 1 comment
Owner

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.
Author
Owner

Outright removed the spinner, in favor of section by section progress

Outright removed the spinner, in favor of section by section progress
jared closed this issue 2026-02-02 15:42:43 -05:00
Sign in to join this conversation.
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: LotusGuild/proxDoc#3