Rename CACHDIR to CACHEDIR

Looks like it's just a typo.

Change-Id: Ia4bf1152870ba1996171f5502f1f074f11ffd446
This commit is contained in:
Mark McLoughlin 2013-07-22 15:01:35 +01:00
parent 2f2cb8e969
commit 2013457ca6
1 changed files with 5 additions and 5 deletions

View File

@ -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(){