From d3326fa7651d0955c8a8ed5fef5e036446d1076e Mon Sep 17 00:00:00 2001 From: Richard Levasseur Date: Thu, 19 Feb 2026 23:10:57 -0800 Subject: [PATCH] fix: use forward slashes for initial Rlocation lookup --- python/private/stage2_bootstrap_template.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/private/stage2_bootstrap_template.py b/python/private/stage2_bootstrap_template.py index 5e0472ee1f..bf276f4bcb 100644 --- a/python/private/stage2_bootstrap_template.py +++ b/python/private/stage2_bootstrap_template.py @@ -66,8 +66,6 @@ def get_build_data(self): except ImportError: from python.runfiles import runfiles rlocation_path = self.BUILD_DATA_FILE - if is_windows(): - rlocation_path = rlocation_path.replace("/", "\\") path = runfiles.Create().Rlocation(rlocation_path) if is_windows(): path = os.path.normpath(path)