This is an automated email from the git hooks/post-receive script.
christophe.lyon pushed a commit to branch master in repository toolchain/backport-tools.
The following commit(s) were added to refs/heads/master by this push: new ecf1575 Early exit if git checkout fails. Update linaro-gcc [...] ecf1575 is described below
commit ecf1575c71b052655eefc0d52858bacffb089c81 Author: Christophe Lyon christophe.lyon@linaro.org Date: Fri Jul 10 15:10:10 2015 +0200
Early exit if git checkout fails. Update linaro-gcc-5 branch name. --- linaro-gcc-git-review-backport-tree.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/linaro-gcc-git-review-backport-tree.sh b/linaro-gcc-git-revi [...] index dc06cb2..67354b9 100755 --- a/linaro-gcc-git-review-backport-tree.sh +++ b/linaro-gcc-git-review-backport-tree.sh @@ -76,9 +76,9 @@ for i in backport-for-git-patch backport-for-svn-patch do echo PREPARING $i rm -rf $i - git-new-workdir trunk $i + git-new-workdir trunk $i || exit 1 cd $i - git checkout linaro-5-branch + git checkout linaro/gcc-5-branch || exit 1 cd .. done