Skip to content

Commit aee9345

Browse files
Update python/private/pypi/whl_extract.bzl
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent d4e4d51 commit aee9345

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/private/pypi/whl_extract.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def whl_extract(rctx, *, whl_path, logger):
2626
if os_name != "windows":
2727
# On Unix-like systems, recursively add read permissions to all files
2828
# and ensure directories are traversable (need execute permission)
29-
result = rctx.execute(["chmod", "-R", "u+rX,go+rX", str(install_dir_path)])
29+
result = rctx.execute(["chmod", "-R", "a+rX", str(install_dir_path)])
3030
if result.return_code != 0:
3131
logger.warn(lambda: "Failed to fix file permissions: {}".format(result.stderr))
3232
metadata_file = find_whl_metadata(

0 commit comments

Comments
 (0)