mirror of
https://gitlab.futo.org/videostreaming/grayjay.git
synced 2025-04-20 03:24:50 +00:00
12 lines
205 B
Bash
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!"
|