File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -354,7 +354,9 @@ def _build(self, host=None):
354
354
# identifier changed
355
355
if image_id != previous_result .identifier :
356
356
should_save_result = True
357
- if previous_result .output != docker_build_result_values ['output' ]: # to discuss
357
+ def clean_output (output ):
358
+ return '\n ' .join ([line for line in output .split ('\n ' ) if not line .startswith ('Downloading' )])
359
+ if clean_output (previous_result .output ) != clean_output (docker_build_result_values ['output' ]): # to discuss
358
360
should_save_result = True
359
361
if previous_result .content != docker_build_result_values ['content' ]: # docker image changed
360
362
should_save_result = True
Original file line number Diff line number Diff line change 1
1
.o_field_widget .o_field_runbotjsonb {
2
2
width : 100% ;
3
3
white-space : pre-wrap;
4
- }
4
+ }
You can’t perform that action at this time.
0 commit comments