diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-05-01 14:03:24 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-05-01 14:03:24 +0000 |
commit | 85288c6d7d75aae25cc366c59f69d8bd2b421870 (patch) | |
tree | a57099e1e6b3c43c853c62268419b156e504dc4a | |
parent | 56a77479757c1de70adcece504b9b9ebefc1cfad (diff) | |
parent | 5b839f7796c12a4afda2cf697ec8028070065cc1 (diff) |
Merge "Fix the status problem of lavacli"
-rw-r--r-- | jjb/common/include-agl-lava-jobs-submit.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index bac0c701..07001e5e 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -60,7 +60,7 @@ for i in $(seq 1 $JOB_TIMEOUT); do fi state=$(grep ^state: $JOB_STATUS| cut -d' ' -f2) if [ $state == "Finished" ]; then - status=$(grep ^Health: $JOB_STATUS| cut -d' ' -f2) + status=$(grep ^health: $JOB_STATUS| cut -d' ' -f2) echo "LAVA job $job_id completed with status: $status" break fi |