Merge "Rename CACHDIR to CACHEDIR"

This commit is contained in:
Jenkins 2013-07-22 19:40:21 +00:00 committed by Gerrit Code Review
commit 703534b4ee
1 changed files with 5 additions and 5 deletions

View File

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