Skip to content

Commit

Permalink
Fix ability to download windows toolchains on case sensitive unix sys…
Browse files Browse the repository at this point in the history
…tems
  • Loading branch information
UebelAndre committed Aug 19, 2022
1 parent e0a7829 commit 22ee269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def _python_repository_impl(rctx):
exec_result.stderr,
)
fail(fail_msg)
exec_result = rctx.execute(["touch", "lib/.test"])
exec_result = rctx.execute(["touch", "{}/.test".format(lib_dir)])
if exec_result.return_code == 0:
exec_result = rctx.execute(["id", "-u"])
if exec_result.return_code != 0:
Expand Down

0 comments on commit 22ee269

Please sign in to comment.