10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
|
#! /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>
|