autotest: use recursive forced update in build_binaries.sh

This commit is contained in:
Andrew Tridgell 2016-03-28 15:01:01 +11:00
parent 1c1abb7701
commit 2806171839
1 changed files with 4 additions and 4 deletions

View File

@ -54,7 +54,7 @@ checkout() {
git checkout -f "$vtag2" && {
echo "Using frame specific tag $vtag2"
[ -f $BASEDIR/.gitmodules ] && git submodule update
[ -f $BASEDIR/.gitmodules ] && git submodule update --recursive -f
git log -1
return 0
}
@ -65,14 +65,14 @@ checkout() {
git checkout -f "$vtag2" && {
echo "Using board specific tag $vtag2"
[ -f $BASEDIR/.gitmodules ] && git submodule update
[ -f $BASEDIR/.gitmodules ] && git submodule update --recursive -f
git log -1
return 0
}
git checkout -f "$vtag" && {
echo "Using generic tag $vtag"
[ -f $BASEDIR/.gitmodules ] && git submodule update
[ -f $BASEDIR/.gitmodules ] && git submodule update --recursive -f
git log -1
return 0
}
@ -350,7 +350,7 @@ build_antennatracker() {
[ -f .gitmodules ] && {
git submodule init
git submodule update
git submodule update --recursive -f
}
export BUILDROOT="$TMPDIR/binaries.build"