diff options
Diffstat (limited to 'classes/tinderclient.bbclass')
-rw-r--r-- | classes/tinderclient.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/tinderclient.bbclass b/classes/tinderclient.bbclass index 0cfa9c7ea0..2f4d62b789 100644 --- a/classes/tinderclient.bbclass +++ b/classes/tinderclient.bbclass @@ -315,7 +315,8 @@ def tinder_do_tinder_report(event): elif name == "PkgSucceeded": log += "<--- TINDERBOX Package %s done (SUCCESS)\n" % data.getVar('P', event.data, True) elif name == "PkgFailed": - build.exec_task('do_clean', event.data) + if not data.getVar('TINDER_AUTOBUILD') == 0: + build.exec_task('do_clean', event.data) log += "<--- TINDERBOX Package %s failed (FAILURE)\n" % data.getVar('P', event.data, True) status = 200 # remember the failure for the -k case |