aboutsummaryrefslogtreecommitdiffstats
path: root/extensions/update-all.sh
blob: b00de9278db22914dc9f37cadf13f77d6a66d82e (plain) (blame)
1
2
3
ls | while read dir; do if [ -d "$dir/.git" ]; 
then echo "Pulling updates for $dir..."; 
git -C "$dir" pull; fi; done