Double wrap the updater commands so that the DONE code does not appear in the terminl.

This commit is contained in:
2026-05-06 17:48:24 -07:00
parent deffc60730
commit e063f4c4b7

View File

@@ -590,6 +590,7 @@ eval "$(declare -F | grep -v _ | sed 's/-f /-fx /')"
# Run update checker in background.
(
(
if [[ -d "$PROJECT_SHARED" ]]; then
git -C "$PROJECT_SHARED" fetch >/dev/null 2>&1 \
&& git -C "$PROJECT_SHARED" status \
@@ -615,7 +616,8 @@ eval "$(declare -F | grep -v _ | sed 's/-f /-fx /')"
fi
done
fi
) >> "$HOME"/Reports/env-shared.log 2>&1 &
) >> "$HOME"/Reports/env-shared.log 2>&1 &
)
## Complete! ##