Skip to content

Commit

Permalink
Merge branch 'master' into release/v5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Nov 15, 2024
2 parents 43f37d1 + 4c93105 commit 73fd91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ function github_get_libs_idf(){ # github_get_libs_idf <repo-path> <branch-name>
local libs_version=""

while [ "$libs_version" == "" ]; do
version_found=`curl -s -k -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3.raw+json" "https://api.github.com/repos/$repo_path/commits?sha=$branch_name&per_page=100&page=$page" | jq -r '.[].commit.message' | grep -m 1 "$message_prefix" | cut -d' ' -f3`
version_found=`curl -s -k -H "Authorization: token $GITHUB_TOKEN" -H "Accept: application/vnd.github.v3.raw+json" "https://api.github.com/repos/$repo_path/commits?sha=$branch_name&per_page=100&page=$page" | jq -r '.[].commit.message' | grep "$message_prefix" | cut -d' ' -f3`
if [ ! "$version_found" == "" ] && [ ! "$version_found" == "null" ]; then
libs_version=$version_found
else
Expand Down

0 comments on commit 73fd91b

Please sign in to comment.