Fix the eigen archive download path

PiperOrigin-RevId: 284086540
Change-Id: Id0b6a9d71119fc6487bc94defbf4e8f4ccbda94b
This commit is contained in:
YoungSeok Yoon 2019-12-05 17:08:49 -08:00 committed by TensorFlower Gardener
parent 24cab684f5
commit 0438fe668e

View File

@ -29,7 +29,7 @@ if [ ! -f $BZL_FILE_PATH ]; then
exit 1;
fi
EIGEN_URL="$(grep -o 'http.*github.com/eigenteam/eigen-git-mirror/archive/.*tar\.gz' "${BZL_FILE_PATH}" | grep -v mirror.tensorflow | head -n1)"
EIGEN_URL="$(grep -o 'https.*gitlab.com/libeigen/eigen/-/archive/.*tar\.gz' "${BZL_FILE_PATH}" | grep -v mirror.tensorflow | head -n1)"
GEMMLOWP_URL="$(grep -o 'https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/gemmlowp/.*zip' "${BZL_FILE_PATH}" | head -n1)"
GOOGLETEST_URL="https://github.com/google/googletest/archive/release-1.8.0.tar.gz"
ABSL_URL="$(grep -o 'https://github.com/abseil/abseil-cpp/.*tar.gz' "${BZL_FILE_PATH}" | head -n1)"