We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jq
1 parent 4724b92 commit 4887f20Copy full SHA for 4887f20
oss_scripts/prepare_tf_dep.sh
@@ -28,7 +28,7 @@ if [[ "${osname}" == "darwin" ]]; then
28
else
29
short_commit_sha=$(echo $short_commit_sha | grep -oP '(?<=-g)[0-9a-f]*$')
30
fi
31
-commit_sha=$(curl -s "https://api.github.com/repos/tensorflow/tensorflow/commits/$short_commit_sha" | jq -r .sha)
+commit_sha=$(curl -s "https://api.github.com/repos/tensorflow/tensorflow/commits/$short_commit_sha" | grep "sha" | head -n 1 | cut -d '"' -f 4)
32
33
# Update TF dependency to installed tensorflow
34
sed -E -i $ext "s/strip_prefix = \"tensorflow-2.+\",/strip_prefix = \"tensorflow-${commit_sha}\",/" WORKSPACE
0 commit comments