x-checker: Restore pipe to true

This commit is contained in:
bbhtt
2025-07-06 09:47:18 +05:30
parent bd6b2547db
commit 3f65a573be

View File

@@ -17,7 +17,7 @@ echo "==> Deleting inactive repos"
base_url="https://raw.githubusercontent.com/flathub-infra/flathub-inactive-repo-list/refs/heads/main/"
for file in inactive.txt manual_inactive.txt; do
curl -s "${base_url}${file}" | while read folder; do
test -d "$folder" && echo "==> Deleting $folder" && rm -rf "$folder"
test -d "$folder" && echo "==> Deleting $folder" && rm -rf "$folder" || true
done
done