From 6d929ceb42a862379ed4ea47d92fe8be9ece8bc6 Mon Sep 17 00:00:00 2001 From: "courtmanr@gmail.com" Date: Mon, 21 Apr 2025 12:53:39 +0100 Subject: [PATCH] refactor(script): Always refresh NodeSource GPG key --- scripts/install-pulse.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/install-pulse.sh b/scripts/install-pulse.sh index 75054da85..dc9b29ab7 100644 --- a/scripts/install-pulse.sh +++ b/scripts/install-pulse.sh @@ -73,6 +73,7 @@ setup_node() { if [ ! -d "$KEYRING_DIR" ]; then mkdir -p "$KEYRING_DIR" || { print_error "Failed to create $KEYRING_DIR"; exit 1; } fi + print_info "Downloading/refreshing NodeSource GPG key..." curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o "$KEYRING_FILE" if [ $? -ne 0 ]; then print_error "Failed to download or process NodeSource GPG key."