Skip to content

Commit a938008

Browse files
committed
workflow: do not log if link check is successful
1 parent 9ca73cc commit a938008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/checkLinks.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ async function checkLink (file, link, n) {
1515
if (result.statusCode !== 200) {
1616
throw new Error('error')
1717
} else {
18-
console.log('[OK]', link, result.statusCode)
18+
// console.log('[OK]', link, result.statusCode)
1919
}
2020
} catch (e) {
2121
console.warn('[!!]', link, `${file}:${parseInt(n) + 1}`)

0 commit comments

Comments
 (0)