From 28e6462b4ea9cec2f87198a71b61753c312cbc4c Mon Sep 17 00:00:00 2001 From: kichik Date: Sun, 11 Dec 2016 21:46:29 +0000 Subject: [PATCH] print all bad eols git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6821 212acab6-be3b-0410-9dea-997c60f758d6 --- Scripts/release.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Scripts/release.py b/Scripts/release.py index 03ebbb30..d0a009e8 100644 --- a/Scripts/release.py +++ b/Scripts/release.py @@ -205,6 +205,7 @@ def TestSubversionEOL(): svn_files = filter(versioned, files) svn_files = filter(lambda x: x not in exceptions, svn_files) + bad_eol = False for f in svn_files: ext = splitext(f)[1] if ext in eoldict.keys(): @@ -214,7 +215,10 @@ def TestSubversionEOL(): if not s or s[0] != eol: print '*** %s has bad eol-style' % path log('*** %s has bad eol-style' % path) - exit() + bad_eol = True + + if bad_eol: + exit() def CreateMenuImage(): print 'creating images...'