1
0
mirror of https://github.com/tw93/Mole.git synced 2026-02-04 18:34:46 +00:00

Improve spinner subprocess and trap cleanup handling

This commit is contained in:
Tw93
2025-12-28 19:35:29 +08:00
parent 61069aff86
commit 52d50a0a80
5 changed files with 12 additions and 9 deletions

View File

@@ -255,7 +255,10 @@ start_inline_spinner() {
if [[ -t 1 ]]; then
(
trap 'exit 0' TERM INT EXIT
# Clean exit handler for spinner subprocess
cleanup_spinner() { exit 0; }
trap cleanup_spinner TERM INT EXIT
local chars
chars="$(mo_spinner_chars)"
[[ -z "$chars" ]] && chars="|/-\\"