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.
Asked
Active
Viewed 530 times
1 Answers
2
Yes, just run with the parameter -a
, --always-execute
.
It is mentioned in a note in the tutorial.

schettino72
- 2,990
- 1
- 28
- 27
-
Thanks @schettino72. Just for other's benefit, the full command is like `doit --single -a
` – victorx Nov 28 '19 at 22:03