#!/bin/bash #Quick script used to checkout the Mythweb source #This source should be used build all mythplugins & main program #76df8e6c8f7b84a157607d8c25fd19f39d8dc830 _gitroot="https://github.com/MythTV/mythweb.git" _gitname="mythweb" startdir=`pwd` #Set this to True, to update mythtv to the latest. #If not true then it will use the hash stored in git_hash _current="True" _checkoutHASH=`cat git_hash_web` if [ -d $_gitname ] then cd $_gitname git checkout fixes/0.25 git pull echo "The local files are updated." else git clone -b fixes/0.25 $_gitroot fi if [ -d $_gitname ] then cd $_gitname if [ $_current == True ] then git rev-parse HEAD > $startdir/git_hash_web else git checkout $_checkoutHASH fi pwd ls fi echo "GIT checkout done or server timeout"