#!/bin/bash #Quick script used to checkout the MythTV source #This source should be used build all mythplugins & main program _gitroot="https://github.com/MythTV/mythtv.git" _gitname="mythtv" if [ -d $_gitname ] then cd $_gitname && git pull echo "The local files are updated." else git clone -b fixes/0.25 $_gitroot fi echo "GIT checkout done or server timeout"