updated spotify_liked_tracks_uris.sh

pull/2/head
Hari Sekhon 4 years ago
parent 82bb94a09f
commit 7fcce8c13d

@ -1,9 +1,6 @@
#!/usr/bin/env bash
# vim:ts=4:sts=4:sw=4:et
#
# args: 64OO67Be8wOXn6STqHxexr
# args: Florence.*
#
# Author: Hari Sekhon
# Date: 2020-06-24 01:17:21 +0100 (Wed, 24 Jun 2020)
#
@ -56,9 +53,9 @@ export SPOTIFY_PRIVATE=1
spotify_token
while [ -n "$url_path" ] && [ "$url_path" != null ]; do
while not_null "$url_path"; do
output="$("$srcdir/spotify_api.sh" "$url_path" "$@")"
exit_if_jq_error
url_path="$(get_next)"
die_if_error_field "$output"
url_path="$(get_next "$output")"
output
done

Loading…
Cancel
Save