From a7a010d66079d2600b14a96d70e2176f1c899320 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Sat, 18 Apr 2026 09:14:30 +0200 Subject: [PATCH] Fix spinner stop call and add newline at end of file --- scripts/gpu_tpu/nvidia_installer.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/gpu_tpu/nvidia_installer.sh b/scripts/gpu_tpu/nvidia_installer.sh index 9b899d3b..080e9967 100644 --- a/scripts/gpu_tpu/nvidia_installer.sh +++ b/scripts/gpu_tpu/nvidia_installer.sh @@ -428,6 +428,7 @@ EOF # Attempt to unload nouveau if currently loaded if lsmod | grep -q "^nouveau "; then + stop_spinner msg_info "$(translate 'Nouveau module is loaded, attempting to unload...')" modprobe -r nouveau 2>/dev/null || true @@ -550,6 +551,7 @@ complete_nvidia_uninstall() { update_component_status "nvidia_driver" "removed" "" "gpu" '{}' msg_ok "$(translate 'Complete NVIDIA uninstallation finished.')" | tee -a "$screen_capture" + stop_spinner } cleanup_nvidia_dkms() {