Skip to content

Commit

Permalink
Fix curl command in list-all
Browse files Browse the repository at this point in the history
Signed-off-by: Mihai Todor <todormihai@gmail.com>
  • Loading branch information
mihaitodor committed Aug 26, 2024
1 parent cb557e5 commit 05c3006
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/list-all
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ else
GITHUB_AUTHENTICATION_HEADER=("--header" "Authorization: token $GITHUB_API_TOKEN")
fi

curl "${GITHUB_AUTHENTICATION_HEADER[@]}" --silent https://api.github.com/repos/benthosdev/benthos/releases | jq '.[].name' -r | cut -c2- | sort -t "." -k1,1n -k2,2n -k3,3n | tr '\n' ' '
curl -L "${GITHUB_AUTHENTICATION_HEADER[@]}" --silent https://api.github.com/repos/benthosdev/benthos/releases | jq '.[].name' -r | cut -c2- | sort -t "." -k1,1n -k2,2n -k3,3n | tr '\n' ' '

0 comments on commit 05c3006

Please sign in to comment.