mirror of
https://github.com/monero-project/gitian.sigs.git
synced 2024-11-16 18:47:36 +00:00
Verify-Merge: Add exception for single binary whitespace issue
This commit is contained in:
parent
8ca15ac97a
commit
d22ead567e
1 changed files with 2 additions and 0 deletions
|
@ -186,6 +186,8 @@ def verify_checksums(assert_files):
|
||||||
# The OSX SDK may change from time to time:
|
# The OSX SDK may change from time to time:
|
||||||
if 'sdk' in assert_file_contents[i]:
|
if 'sdk' in assert_file_contents[i]:
|
||||||
continue
|
continue
|
||||||
|
if assert_file_contents[i].strip() == '\'':
|
||||||
|
continue
|
||||||
if assert_file_contents[i] != first_file_contents[i]:
|
if assert_file_contents[i] != first_file_contents[i]:
|
||||||
sys.stderr.write('ERROR: Found conflicting contents on line: ' + str(i) + ' of file ')
|
sys.stderr.write('ERROR: Found conflicting contents on line: ' + str(i) + ' of file ')
|
||||||
sys.stderr.write(assert_file['path'] + ':\n' + assert_file_contents[i])
|
sys.stderr.write(assert_file['path'] + ':\n' + assert_file_contents[i])
|
||||||
|
|
Loading…
Reference in a new issue