Skip to content

Commit 4887f20

Browse files
rtg0795tf-text-github-robot
authored andcommitted
Avoid using jq in prepare_tf_dep.sh since it breaks macos builds
PiperOrigin-RevId: 531558540
1 parent 4724b92 commit 4887f20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

oss_scripts/prepare_tf_dep.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "${osname}" == "darwin" ]]; then
2828
else
2929
short_commit_sha=$(echo $short_commit_sha | grep -oP '(?<=-g)[0-9a-f]*$')
3030
fi
31-
commit_sha=$(curl -s "https://api.github.com/repos/tensorflow/tensorflow/commits/$short_commit_sha" | jq -r .sha)
31+
commit_sha=$(curl -s "https://api.github.com/repos/tensorflow/tensorflow/commits/$short_commit_sha" | grep "sha" | head -n 1 | cut -d '"' -f 4)
3232

3333
# Update TF dependency to installed tensorflow
3434
sed -E -i $ext "s/strip_prefix = \"tensorflow-2.+\",/strip_prefix = \"tensorflow-${commit_sha}\",/" WORKSPACE

0 commit comments

Comments
 (0)