Initial source commit.

This commit is contained in:
Koen 2023-09-25 17:18:43 +02:00
commit 5b815f9c16
1031 changed files with 74881 additions and 0 deletions

View file

@ -0,0 +1,12 @@
#!/bin/sh
for dir in */ ; do
if [ -d "$dir/.git" ]; then
echo "Pulling latest changes for $dir"
(
cd "$dir" || exit
git pull
)
fi
done
echo "Done!"