fix python detection on windows (#30302)

pull/30616/head
Akash Patel 3 years ago committed by GitHub
parent 83825a889f
commit 1b8f7b1c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      third_party/py/python_configure.bzl

@ -345,7 +345,7 @@ def _python_autoconf_impl(repository_ctx):
repository_ctx,
"_python3",
_PYTHON3_BIN_PATH,
"python3",
"python3" if not _is_windows(repository_ctx) else "python.exe",
_PYTHON3_LIB_PATH,
False
)

Loading…
Cancel
Save