diff --git a/toci_functions.sh b/toci_functions.sh index 54c6d5fb1..e4897a01d 100644 --- a/toci_functions.sh +++ b/toci_functions.sh @@ -1,16 +1,16 @@ #!/usr/bin/env bash get_get_repo(){ - CACHDIR=$TOCI_CACHE_DIR/${1/[^\/]*\//} - if [ ! -e $CACHDIR ] ; then - git clone https://github.com/$1.git $CACHDIR + CACHEDIR=$TOCI_CACHE_DIR/${1/[^\/]*\//} + if [ ! -e $CACHEDIR ] ; then + git clone https://github.com/$1.git $CACHEDIR else - pushd $CACHDIR + pushd $CACHEDIR git fetch git reset --hard origin/master popd fi - cp -r $CACHDIR $TOCI_WORKING_DIR/${1/[^\/]*\//} + cp -r $CACHEDIR $TOCI_WORKING_DIR/${1/[^\/]*\//} } ssh_noprompt(){