spotify: Typo in update.sh

+2 -2
+2 -2
pkgs/applications/audio/spotify/update.sh
··· 29 30 # create bash array from snap info 31 snap_info=($( 32 - curl -H 'X-Ubuntu-Series: 16' \ 33 "https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=$channel" \ 34 | jq --raw-output \ 35 '.revision,.download_sha512,.version,.last_updated' ··· 61 # 62 63 if [[ "$current_nix_version" = "$upstream_version" ]]; then 64 - echo "Spotify is already up ot date" 65 exit 0 66 fi 67
··· 29 30 # create bash array from snap info 31 snap_info=($( 32 + curl -s -H 'X-Ubuntu-Series: 16' \ 33 "https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=$channel" \ 34 | jq --raw-output \ 35 '.revision,.download_sha512,.version,.last_updated' ··· 61 # 62 63 if [[ "$current_nix_version" = "$upstream_version" ]]; then 64 + echo "Spotify is already up-to-date" 65 exit 0 66 fi 67