]> dev.renevier.net Git - syj.git/blob - scripts/updateopenlayers.sh
revert: add mapquest layer
[syj.git] / scripts / updateopenlayers.sh
1 #!/bin/sh
2 if [ -d public/openlayers ]; then
3     cd public/openlayers
4     git checkout master
5     git pull -u
6     git checkout syj
7     git rebase master
8 else
9     git clone http://github.com/ccnmtl/openlayers.git public/openlayers
10     cd public/openlayers
11     git checkout -b syj
12     git am ../../patches/openlayers/000*
13 fi