Skip to content

Commit 5ff0dc8

Browse files
authored
Fix ability to download windows toolchains on case sensitive unix systems (#797)
1 parent dd2e947 commit 5ff0dc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def _python_repository_impl(rctx):
141141
exec_result.stderr,
142142
)
143143
fail(fail_msg)
144-
exec_result = rctx.execute(["touch", "lib/.test"])
144+
exec_result = rctx.execute(["touch", "{}/.test".format(lib_dir)])
145145
if exec_result.return_code == 0:
146146
exec_result = rctx.execute(["id", "-u"])
147147
if exec_result.return_code != 0:

0 commit comments

Comments
 (0)