Reputation: 3569
I'm using doit to automiate some data analysis pipeline. During development/debug time, it is often necessary to rerun a task even its file dependencies haven't changed. I was wondering whether there is a command line option to achieve this. I've searched the document but could not find one.
Upvotes: 0
Views: 775
Reputation: 3170
Yes, just run with the parameter -a
, --always-execute
.
It is mentioned in a note in the tutorial.
Upvotes: 3