#!/bin/bash
# Script to automate local sandbox creation for developer
BRANCH='15.0'
BASEDIR=`pwd`
REPOSDIR=$BASEDIR"/Dur-Pro"
REPOS=$REPOSDIR"/*"

for REPO in $REPOS
do
  echo "Processing $REPO repo..."

  cd $REPO
  git pull

done

cd $BASEDIR