瀏覽代碼

Show number of links with a possible error

pull/3011/head
Matheus Felipe 2 年之前
父節點
當前提交
50ad807e5c
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: AA785C523274872F
共有 1 個檔案被更改,包括 5 行新增0 行删除
  1. +5
    -0
      scripts/validate/links.py

+ 5
- 0
scripts/validate/links.py 查看文件

@@ -225,6 +225,11 @@ if __name__ == '__main__':

errors = check_if_list_of_links_are_working(links)
if errors:

num_errors = len(errors)
print(f'Apparently {num_errors} links are not working properly. See in:')

for error_message in errors:
print(error_message)

sys.exit(1)

Loading…
取消
儲存