remove docker pruning

This commit is contained in:
2025-12-18 14:50:41 -06:00
parent 65fb35877e
commit ff7921c45d
2 changed files with 3 additions and 12 deletions

View File

@@ -347,12 +347,10 @@ spinner() {
local spinPidFile="${TMP_DIR}/.spinner-pid"
case "${action}" in
start)
test -f "${spinPidFile}" &&
rm "${spinPidFile}"
test -f "${spinPidFile}" && rm "${spinPidFile}"
# don't want to clutter logs if running headless
test "${HEADLESS}" == '1' &&
return
test "${HEADLESS}" == '1' && return
_start_spinner &
echo $! >"${spinPidFile}"