#! /bin/bash -
# set -x

if [ $# -eq 2 ]; then
    test mkdir -p $1 && cd $1 && git clone $2
    exit $?
fi

echo "Usage: ./${0##*/} <workspace-directory> <path-to-customer-repository>