grayjay/scripts/pull-all-sources.sh
2023-09-25 17:18:43 +02:00

12 lines
205 B
Bash

#!/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!"