summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/buildinfohelper.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/bb/ui/buildinfohelper.py')
-rw-r--r--bitbake/lib/bb/ui/buildinfohelper.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/ui/buildinfohelper.py b/bitbake/lib/bb/ui/buildinfohelper.py
index 491fd1566d..1096ccf4de 100644
--- a/bitbake/lib/bb/ui/buildinfohelper.py
+++ b/bitbake/lib/bb/ui/buildinfohelper.py
@@ -1114,7 +1114,8 @@ class BuildInfoHelper(object):
1114 be.save() 1114 be.save()
1115 br = BuildRequest.objects.get(pk = br_id) 1115 br = BuildRequest.objects.get(pk = br_id)
1116 if errorcode == 0: 1116 if errorcode == 0:
1117 br.state = BuildRequest.REQ_COMPLETED 1117 # request archival of the project artifacts
1118 br.state = BuildRequest.REQ_ARCHIVE
1118 else: 1119 else:
1119 br.state = BuildRequest.REQ_FAILED 1120 br.state = BuildRequest.REQ_FAILED
1120 br.save() 1121 br.save()