You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
248 B
16 lines
248 B
4 years ago
|
#!/bin/sh
|
||
|
|
||
|
REPOSRC=$1
|
||
|
LOCALREPO=$2
|
||
|
|
||
|
# We do it this way so that we can abstract if from just git later on
|
||
|
LOCALREPO_VC_DIR=$LOCALREPO/.git
|
||
|
|
||
|
if [ ! -d $LOCALREPO_VC_DIR ]
|
||
|
then
|
||
|
git clone $REPOSRC $LOCALREPO
|
||
|
else
|
||
|
cd $LOCALREPO
|
||
|
git pull $REPOSRC
|
||
|
fi
|