fix (lint_clean_files): xargs conflict warning

pull/2127/head
Gurkirat Singh 2022-03-13 04:36:02 +05:30
parent e1ddf6e311
commit 22fd8d582c
No known key found for this signature in database
GPG Key ID: 5C2602348A8FACE1
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ mapfile -t FILES < <(
cat clean_files.txt \
| grep -v -E '^\s*$' \
| grep -v -E '^\s*#' \
| xargs -n1 -I{} find "{}" -type f
| xargs --replace -n1 find "{}" -type f
)
# We clear the BASH_IT variable to help the shellcheck checker