Add utility to clone customer repository in workspace-directory

This commit is contained in:
Gerhard Hoffmann 2022-06-05 17:13:18 +02:00
parent fa5bbc76a5
commit a0602c820c

9
clone_customer_repository Executable file
View File

@ -0,0 +1,9 @@
#! /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>