From 2c5bec6e900179bcebc75987cd9fb5d6a459915a Mon Sep 17 00:00:00 2001 From: pybind11_abseil authors Date: Fri, 16 Feb 2024 13:05:02 -0800 Subject: [PATCH] Fix strip_prefix in README PiperOrigin-RevId: 607777670 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 66e2dfd..3db3bd2 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ http_archive( http_archive( name = "pybind11_abseil", - strip_prefix = "pybind11_abseil_master" + strip_prefix = "pybind11_abseil-master" urls = ["https://github.com/pybind/pybind11_abseil/refs/heads/master.tar.gz"], ) @@ -89,7 +89,7 @@ http_archive( http_archive( name = "pybind11_abseil", - strip_prefix = "pybind11_abseil_master", + strip_prefix = "pybind11_abseil-master", urls = ["https://github.com/pybind/pybind11_abseil/refs/heads/master.tar.gz"], ) ```