mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
fix: output Unix-style paths for git diffs on Win (#25763)
This commit is contained in:
@@ -15,6 +15,7 @@ import fnmatch
|
||||
import io
|
||||
import multiprocessing
|
||||
import os
|
||||
import posixpath
|
||||
import signal
|
||||
import subprocess
|
||||
import sys
|
||||
@@ -135,6 +136,8 @@ def run_clang_format_diff(args, file_name):
|
||||
proc.returncode, file_name), errs)
|
||||
if args.fix:
|
||||
return None, errs
|
||||
if sys.platform == 'win32':
|
||||
file_name = file_name.replace(os.sep, posixpath.sep)
|
||||
return make_diff(file_name, original, outs), errs
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user