Skip to content

Commit

Permalink
Update url-check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hillarymarler committed Aug 28, 2024
1 parent 2456f91 commit 2ffce91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/url-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ jobs:

if(nrow(check) > 0) {

cat('The following URLs are broken:\n')
cat(check$URL, sep = '\n')
print('The following URLs are broken:\n')
print(paste((check$URL, sep = '\n'))
quit(status = 1)

} else {
cat('All URLs are valid.\n')
print('All URLs are valid.\n')
}
"

0 comments on commit 2ffce91

Please sign in to comment.