From 57c2c88c53853cab6b36dbc80ffe7c6a2df60e99 Mon Sep 17 00:00:00 2001 From: Michel Roegl-Brunner Date: Tue, 16 Jun 2026 11:07:23 +0200 Subject: [PATCH] Stop spinner for deleted/disabled info messages Co-authored-by: Cursor --- .github/workflows/delete-pocketbase-entry-on-removal.yml | 2 +- ct/ente.sh | 2 +- ct/litellm.sh | 2 +- ct/minio.sh | 2 +- misc/build.func | 4 ++-- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/delete-pocketbase-entry-on-removal.yml b/.github/workflows/delete-pocketbase-entry-on-removal.yml index c01f47c27..03056dc1e 100644 --- a/.github/workflows/delete-pocketbase-entry-on-removal.yml +++ b/.github/workflows/delete-pocketbase-entry-on-removal.yml @@ -279,7 +279,7 @@ color msg_error "This script is no longer available in community-scripts." msg_error "${deletedMessage.replace(/"/g, '\\"')}" -msg_info "More info: https://community-scripts.org/scripts/${slug}" +msg_warn "More info: https://community-scripts.org/scripts/${slug}" exit 1 `; fs.writeFileSync(stubPath, content); diff --git a/ct/ente.sh b/ct/ente.sh index 9d6ebaefa..f2a3b30e5 100644 --- a/ct/ente.sh +++ b/ct/ente.sh @@ -11,5 +11,5 @@ color msg_error "This script is no longer available in community-scripts." msg_error "This script was removed and cannot be installed or updated." -msg_info "More info: https://community-scripts.org/scripts/ente" +msg_warn "More info: https://community-scripts.org/scripts/ente" exit 1 diff --git a/ct/litellm.sh b/ct/litellm.sh index a88fefec8..16d078f40 100644 --- a/ct/litellm.sh +++ b/ct/litellm.sh @@ -11,5 +11,5 @@ color msg_error "This script is no longer available in community-scripts." msg_error "This script was removed and cannot be installed or updated." -msg_info "More info: https://community-scripts.org/scripts/litellm" +msg_warn "More info: https://community-scripts.org/scripts/litellm" exit 1 diff --git a/ct/minio.sh b/ct/minio.sh index cd5e80bd1..a9ee5c0b1 100644 --- a/ct/minio.sh +++ b/ct/minio.sh @@ -11,5 +11,5 @@ color msg_error "This script is no longer available in community-scripts." msg_error "Repository is archived. Minio is gone" -msg_info "More info: https://community-scripts.org/scripts/minio" +msg_warn "More info: https://community-scripts.org/scripts/minio" exit 1 diff --git a/misc/build.func b/misc/build.func index 5947cb944..8ebda5cbc 100644 --- a/misc/build.func +++ b/misc/build.func @@ -3677,7 +3677,7 @@ runtime_script_status_guard() { msg_error "This script is no longer available in community-scripts." [[ -n "$deleted_message" ]] && msg_error "$deleted_message" [[ -z "$deleted_message" ]] && msg_error "This script was removed and cannot be installed or updated." - msg_info "More info: ${info_url}" + msg_warn "More info: ${info_url}" return 1 fi @@ -3685,7 +3685,7 @@ runtime_script_status_guard() { msg_error "This script is currently disabled in community-scripts." [[ -n "$disable_message" ]] && msg_error "$disable_message" [[ -z "$disable_message" ]] && msg_error "Updates and installs are temporarily disabled for this script." - msg_info "More info: ${info_url}" + msg_warn "More info: ${info_url}" return 1 fi