#!/bin/sh

for j in \
	calendar-backend \
	eds-backend-telepathy \
	eds-fremantle \
	fremantle-gdigicam \
	fremantle-hildon-desktop \
	hail \
	maemo-af \
	maemo-bluetooth \
	maemo-gnome-essentials \
	maemo-image-editor \
	maemo-multimedia \
	maemo-rtcom \
	modest \
	qemu-maemo \
	tracker

do echo
	echo "=========================================="
	echo "Updating Main Section $j"
	echo "=========================================="
	cd ~/$j

	for i in */git/*
	do echo 
		echo "Updating git repo $i"
		cd $i
		git pull
		cd ../../..
	done
done
