scripts/rrs_update/recipe_upstream.py: Also create_recipe_upstream when

no_update_reason changes.

Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
Aníbal Limón 2015-01-14 11:02:28 -06:00
parent 07293ec835
commit 9a5de0e7ec

View File

@ -34,6 +34,8 @@ def create_recipe_upstream(recipe, recipe_result, logger):
create = True create = True
elif recipe_result['status'] != recipe_upstream_db.status: elif recipe_result['status'] != recipe_upstream_db.status:
create = True create = True
elif recipe_result['no_update_reason'] != recipe_upstream_db.no_update_reason:
create = True
except Exception as e: except Exception as e:
create = True create = True