#!/usr/bin/env bash

set -x

for d in workspace/*; do
  (cd $d && git checkout master && git pull)
done

exit 0
