[add] scripts

This commit is contained in:
2025-08-14 21:28:51 +01:00
parent b044536a3b
commit 9dc2e300dc
8 changed files with 960 additions and 16 deletions

12
script-placer-successes.sh Executable file
View File

@@ -0,0 +1,12 @@
#! /bin/bash
## Run the script-placer.sh for each repository in the success.txt file
while read -r repo; do
if [[ -n "$repo" ]]; then
# echo "Running script-placer.sh for repository: candidates/$repo"
./script-placer.sh "../candidates-repos/$repo" || echo "Failed to process $repo"
else
echo "Skipping empty repository entry"
fi
done < success.txt