tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
spotify: Typo in update.sh
Tim Steinbach
6 years ago
34a64378
e9994af1
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
spotify
update.sh
+2
-2
pkgs/applications/audio/spotify/update.sh
···
29
29
30
30
# create bash array from snap info
31
31
snap_info=($(
32
32
-
curl -H 'X-Ubuntu-Series: 16' \
32
32
+
curl -s -H 'X-Ubuntu-Series: 16' \
33
33
"https://api.snapcraft.io/api/v1/snaps/details/spotify?channel=$channel" \
34
34
| jq --raw-output \
35
35
'.revision,.download_sha512,.version,.last_updated'
···
61
61
#
62
62
63
63
if [[ "$current_nix_version" = "$upstream_version" ]]; then
64
64
-
echo "Spotify is already up ot date"
64
64
+
echo "Spotify is already up-to-date"
65
65
exit 0
66
66
fi
67
67