#!/bin/bash

if [ "$1" = "" ]; then
    echo "usage: fetch_external_sources /path/to/source"
    exit 1
fi
cd $1

git submodule init
git submodule update

exit 0
