Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/update_sharedstate
blob: 7a92b095f74ba14bc91acb61e3d3885e41d4dc35 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
SSDIR=sharedstate.git
SSGIT=git://dev.laptop.org/projects/sharedstate
if [ -e ${SSDIR} ]; then
	cd ${SSDIR}
	git-pull ${SSGIT}
	cd ..
else
	git-clone ${SSGIT} ${SSDIR}
	ln -s ${SSDIR}/sharedstate sharedstate
fi