[add] scripts
This commit is contained in:
12
script-placer-successes.sh
Executable file
12
script-placer-successes.sh
Executable 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
|
Reference in New Issue
Block a user