# HG changeset patch # User Ludovic Chabant # Date 1438748468 25200 # Node ID 7453baeb083972abec57da2487358655ef006027 # Parent 785dea918ad80e3381c3c9692a5cbc5fbc980031 bake: Set the flags, don't combine. We don't want to combine old flags with new ones, especially if something went different between the last bake and the current one. diff -r 785dea918ad8 -r 7453baeb0839 piecrust/processing/pipeline.py --- a/piecrust/processing/pipeline.py Sun Aug 02 23:01:59 2015 -0700 +++ b/piecrust/processing/pipeline.py Tue Aug 04 21:21:08 2015 -0700 @@ -122,7 +122,7 @@ def _handler(res): entry = record.getCurrentEntry(res.path) assert entry is not None - entry.flags |= res.flags + entry.flags = res.flags entry.proc_tree = res.proc_tree entry.rel_outputs = res.rel_outputs if entry.flags & FLAG_PROCESSED: