Don't mess up wiht CRLF line ending

This commit is contained in:
Cheng Zhao 2017-06-30 15:27:08 +09:00 коммит произвёл Aleksei Kuzmin
Родитель 1b978e12ef
Коммит 79d7118498
2 изменённых файлов: 3 добавлений и 1 удалений

3
.gitattributes поставляемый Normal file
Просмотреть файл

@ -0,0 +1,3 @@
# Don't mess up with CRLF line ending on Windows
*.py text eol=lf
*.patch text eol=lf

Просмотреть файл

@ -12,7 +12,6 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def main():
os.chdir(SOURCE_ROOT)
result = (subprocess.call(['git', 'submodule', 'sync']) or
subprocess.call(['git', 'config', 'core.autocrlf', 'false']) or
subprocess.call(['git', 'submodule', 'update',
'--init', '--recursive']))
if result: