From e15eae5572c28b31ebbcecbbf4967c9074a2e09a Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 23 Dec 2021 13:06:41 +0100 Subject: [PATCH] always trust spotify repo (fixing gpg key-error bc spotify changes *regularly* their keys) --- installSpotify.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/installSpotify.sh b/installSpotify.sh index ca3e36a..e13abfb 100644 --- a/installSpotify.sh +++ b/installSpotify.sh @@ -3,8 +3,7 @@ sudo snap remove spotify 2> /dev/null sudo flatpak uninstall com.spotify.Client 2> /dev/null # We install the version from the official website which curl &> /dev/null || sudo apt update && sudo apt install curl -y # Install curl if not already installed -curl -sS https://download.spotify.com/debian/pubkey_0D811D58.gpg | sudo apt-key add - -echo "deb http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list +echo "deb [trusted=yes] http://repository.spotify.com stable non-free" | sudo tee /etc/apt/sources.list.d/spotify.list sudo apt update sudo apt install spotify-client -y # We install the prerequisites to build and install the patch (Git and Rust will be installed and not removed)