Skip to content

Commit

Permalink
Prefer /-path to \-path for Goma and re-client
Browse files Browse the repository at this point in the history
Bug: 1208198
Change-Id: Ieaade29caa2b3a1785ef581b98ae4027a1253ca3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2880436
Commit-Queue: Fumitoshi Ukai <ukai@google.com>
Reviewed-by: Yoshisato Yanagisawa <yyanagisawa@google.com>
Reviewed-by: Takuto Ikuta <tikuta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#882384}
  • Loading branch information
ukai authored and Chromium LUCI CQ committed May 13, 2021
1 parent 347d45d commit a7c2fd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/toolchain/win/setup_toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def main():

def relflag(s): # Make s relative to builddir when cwd and sdk on same drive.
try:
return os.path.relpath(s)
return os.path.relpath(s).replace('\\', '/')
except ValueError:
return s

Expand Down

0 comments on commit a7c2fd0

Please sign in to comment.