Description
We should enable the --graffiti-append flag from this PR by default:
Because we've already released it, we need to do this in a backwards-compatible way. I think something like making the flag accept Option<bool> would work well, i.e. all of these would be accepted:
--graffiti-append true: do append
--graffiti-append false: don't append
--graffiti-append: do append
<nothing>: do append
We should have CLI tests for each of these options as well.
Description
We should enable the
--graffiti-appendflag from this PR by default:Because we've already released it, we need to do this in a backwards-compatible way. I think something like making the flag accept
Option<bool>would work well, i.e. all of these would be accepted:--graffiti-append true: do append--graffiti-append false: don't append--graffiti-append: do append<nothing>: do appendWe should have CLI tests for each of these options as well.