Skip to content

Commit 5031293

Browse files
committed
fix: rlocation path replacement
1 parent cf6313d commit 5031293

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/private/stage2_bootstrap_template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def get_build_data(self):
6767
from python.runfiles import runfiles
6868
rlocation_path = self.BUILD_DATA_FILE
6969
if is_windows():
70-
rlocation_path = rlocation_path.replace("/", "")
70+
rlocation_path = rlocation_path.replace("/", "\\")
7171
path = runfiles.Create().Rlocation(rlocation_path)
7272
if is_windows():
7373
path = os.path.normpath(path)

0 commit comments

Comments
 (0)