Skip to content

Commit aa25bf5

Browse files
committed
GHA: Fix xargs command
`--replace` checks for any `{}` as we need to get the order of the arguments right. This is however incompatible with `--maxargs/-n` which is ignored and hence not neccessary. Remove that to avoid the warning.
1 parent 19a85bc commit aa25bf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sanity_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Sort files
2525
run: |
2626
absPotFile="$PWD/rttr.pot"
27-
find -name '*.po' -print0 | xargs -n1 -0 --replace \
27+
find -name '*.po' -print0 | xargs -0 --replace \
2828
msgmerge --sort-output --no-wrap --quiet --update --backup=none {} ${absPotFile}
2929
- name: Check diff
3030
run: |

0 commit comments

Comments
 (0)