Skip to content

Commit f58427d

Browse files
committed
Merge branch 'master' into release/v5.3
2 parents 076e1e7 + 4c93105 commit f58427d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/config.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function github_get_libs_idf(){ # github_get_libs_idf <repo-path> <branch-name>
108108
local libs_version=""
109109

110110
while [ "$libs_version" == "" ]; do
111-
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`
111+
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`
112112
if [ ! "$version_found" == "" ] && [ ! "$version_found" == "null" ]; then
113113
libs_version=$version_found
114114
else

0 commit comments

Comments
 (0)