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...'