зеркало из https://github.com/electron/electron.git
fix: output Unix-style paths for git diffs on Win (#25763)
This commit is contained in:
Родитель
818751ff87
Коммит
bbdca48cdb
|
@ -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
|
||||
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче