mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
check_readme_links: remove throwing of exception before exit
Reraising the exception before exiting was intended to help troubleshoot, but turned out to be more confusing than helpful as it might look like the script was failing
This commit is contained in:
parent
410a0a5f5a
commit
36d7af5200
@ -22,6 +22,7 @@ import concurrent.futures
|
||||
import os
|
||||
import os.path
|
||||
import re
|
||||
import sys
|
||||
import urllib.error
|
||||
import urllib.request
|
||||
from collections import defaultdict, namedtuple
|
||||
@ -148,8 +149,8 @@ def check_readme_links(args):
|
||||
print('Found {} errors:'.format(len(errors)))
|
||||
for e in errors:
|
||||
print(e)
|
||||
if errors:
|
||||
raise e
|
||||
|
||||
return 1 if len(errors) > 0 else 0
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
@ -158,4 +159,4 @@ if __name__ == '__main__':
|
||||
parser.add_argument('--skip-weburl', '-w', action='store_true', help='Skip checking of web URLs, only check links to local files')
|
||||
args = parser.parse_args()
|
||||
|
||||
check_readme_links(args)
|
||||
sys.exit(check_readme_links(args))
|
||||
|
Loading…
x
Reference in New Issue
Block a user