From 975021add736e2d40667d1abc81ce6e22d76307d Mon Sep 17 00:00:00 2001 From: "Mark C. Miller" Date: Wed, 26 Jun 2024 23:30:25 -0700 Subject: [PATCH] use diff sep char --- .github/workflows/check-urls.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 162245301..31406bf96 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -72,7 +72,7 @@ jobs: maxfilesizedownload=100000 maxfilesizeparse=100000 [csv] - separator=, + separator=; parts=all [MarkdownCheck] filename_re=.*\.md$ @@ -87,7 +87,8 @@ jobs: fi done linkchecker -f .linkcheckerrc -F csv/linkchecker-out.csv -t 20 --check-extern --no-follow-url ".*" --timeout=30 $f || true - tail -n +2 linkchecker-out.csv | grep -v ',200.*$' >> linkchecker-out-all.csv + #tail -n +2 linkchecker-out.csv | grep -v ',200.*$' >> linkchecker-out-all.csv + tail -n +4 linkchecker-out.csv >> linkchecker-out-all.csv done - name: Upload artifact