*: Use xargs instead of while read one-line loops

This commit is contained in:
2025-05-27 17:00:35 +02:00
parent e9f05d5d08
commit 0c17ae8280
2 changed files with 4 additions and 13 deletions

View File

@@ -14,13 +14,8 @@ if [[ "$1" == "--new" ]]; then
grep path .gitmodules \
| cut -d= -f2 \
| sed 's/^\s*//' \
| while read -r line; do
# keep only empty ones
find "$line" -maxdepth 0 -empty
done \
| while read -r line; do
git submodule update --init --recursive -- "$line"
done
| xargs -I'{}' find '{}' -maxdepth 0 -empty \
| xargs -L1 git submodule update --init --recursive --
else
git submodule update --init --recursive
fi