From 0e5478dfbc69f50608fb2df9b3590ad5f113f17e Mon Sep 17 00:00:00 2001 From: Matt Mackay Date: Mon, 30 May 2022 13:15:44 -0400 Subject: [PATCH] fix: typo autodecting -> autodetecting --- py/private/toolchain/autodetecting.bzl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/private/toolchain/autodetecting.bzl b/py/private/toolchain/autodetecting.bzl index b4908dd4..6a632e2d 100644 --- a/py/private/toolchain/autodetecting.bzl +++ b/py/private/toolchain/autodetecting.bzl @@ -16,7 +16,7 @@ def _autodetecting_py_wrapper_impl(rctx): load("@rules_python//python:defs.bzl", "py_runtime", "py_runtime_pair") py_runtime( - name = "autodecting_python3_runtime", + name = "autodetecting_python3_runtime", interpreter = "@{name}//:python.sh", python_version = "PY3", ) @@ -24,7 +24,7 @@ py_runtime( py_runtime_pair( name = "autodetecting_py_runtime_pair", py2_runtime = None, - py3_runtime = ":autodecting_python3_runtime", + py3_runtime = ":autodetecting_python3_runtime", ) toolchain(