git-importer/update-tasks.sh

15 lines
295 B
Bash
Raw Normal View History

2024-05-17 20:39:55 +02:00
#!/bin/bash
#
cd /space/dmueller/git-importer
source credentials.sh
while true; do
for i in $PWD/tasks/*; do
echo "$(date): Importing $(basename $i)"
python3 ./git-importer.py -c repos/.cache $(basename $i)
rm -f $i;
done
inotifywait -q -e create $PWD/tasks
done