Skip to content

Commit

Permalink
Fix docker-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
yongjhih committed Apr 7, 2016
1 parent 56d81e4 commit a6b5afc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-tags
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ json=`curl -s -S "https://registry.hub.docker.com/v2/repositories/yongjhih/parse
while [ "$json" ]; do
echo "$json" | jq '.results[]["name"]'
next=`echo "$json" | jq -r '.next'`
if [ "$next" ]; then
if [[ "$next" && "$next" != "null" ]]; then
json=`curl -s -S "$next"`
else
json=
Expand Down

0 comments on commit a6b5afc

Please sign in to comment.