From: Viktor Szakats Date: Sat, 13 Dec 2025 11:35:36 +0000 (+0100) Subject: GHA/checksrc: fix `-z` position, also use `--output` with `xmllint` X-Git-Tag: rc-8_18_0-2~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23f9d629f5802adc78ad3b1def147bd11dfd1fc5;p=thirdparty%2Fcurl.git GHA/checksrc: fix `-z` position, also use `--output` with `xmllint` Fixing: ``` fatal: option '-z' must come before non-option arguments ``` Ref: https://github.com/curl/curl/actions/runs/20183280533/job/57948203944#step:4:5 Follow-up to b5ea0736bbeeae717925d8eccbdb15057d8e88e9 #19946 Closes #19958 --- diff --git a/.github/workflows/checksrc.yml b/.github/workflows/checksrc.yml index 3b33287d94..717554e5fe 100644 --- a/.github/workflows/checksrc.yml +++ b/.github/workflows/checksrc.yml @@ -135,7 +135,7 @@ jobs: persist-credentials: false - name: 'check' - run: git grep -i -l -E '^<\?xml' -z | xargs -0 -r xmllint >/dev/null + run: git grep -z -i -l -E '^<\?xml' | xargs -0 -r xmllint --output /dev/null miscchecks: name: 'misc checks'