diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-06-25 12:42:59 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-06-25 15:52:04 -0700 |
commit | 1dedf148fe8f7bf7a2e841b8a17e929f5802c2b7 (patch) | |
tree | b887e9a7645eedc10282a027c5d7d5d05c4f4ebe | |
parent | 01bbc9753f32ee795965dda181c98b80ad6ef068 (diff) | |
download | device_common-1dedf148fe8f7bf7a2e841b8a17e929f5802c2b7.zip device_common-1dedf148fe8f7bf7a2e841b8a17e929f5802c2b7.tar.gz device_common-1dedf148fe8f7bf7a2e841b8a17e929f5802c2b7.tar.bz2 |
Generate output even in case of error
Bug: 4295425
Change-Id: Iab20687a11a585fde20714c807df8bc8145e9ddf
-rwxr-xr-x | generate-blob-lists.sh | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/generate-blob-lists.sh b/generate-blob-lists.sh index a16471b..f12936c 100755 --- a/generate-blob-lists.sh +++ b/generate-blob-lists.sh @@ -80,9 +80,9 @@ fi for DEVICENAME in $DEVICES do + MANUFACTURERNAME=$( find device -type d | grep [^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / ) if test $(wc -l < $ARCHIVEDIR/$DEVICENAME-without.txt) != 0 -a $(wc -l < $ARCHIVEDIR/$DEVICENAME-with.txt) != 0 then - MANUFACTURERNAME=$( find device -type d | grep [^/]\*/[^/]\*/$DEVICENAME\$ | cut -f 2 -d / ) ( echo '# Copyright (C) 2011 The Android Open Source Project' echo '#' @@ -117,6 +117,16 @@ do git push ssh://$1:29418/device/$MANUFACTURERNAME/$DEVICENAME.git HEAD:refs/for/$2/autoblobs fi ) + else + ( + cd device/$MANUFACTURERNAME/$DEVICENAME + git commit --allow-empty -m "$(echo -e 'DO NOT SUBMIT - BROKEN BUILD\n\nBug: 4295425')" + if test "$1" != "" -a "$2" != "" + then + echo uploading to server $1 branch $2 + git push ssh://$1:29418/device/$MANUFACTURERNAME/$DEVICENAME.git HEAD:refs/for/$2/autoblobs + fi + ) fi done |