Automatic Cleaning¶
StepUp follows the same cleanup strategy as tup:
If a step is removed or modified so that an output file is no longer created,
StepUp will remove this output.
This is also similar to Ninja’s cleandead
command, but it is not optional in StepUp.
The main advantage of automatic cleaning is that it eliminates potential bugs and confusion related to old output files that are no longer relevant.
Try the Following¶
To illustrate the automatic cleanup, take the files from the example Copy and mkdir
and start StepUp in interactive mode.
Make the following changes and rerun the affected steps after each point by pressing r
in the terminal:
-
Change the directory
sub/
tofoo/
inplan.py
. Rerunning StepUp will not only createfoo/
andfoo/hello.txt
. After completing all pending steps,sub/
andsub/hello.txt
are removed. -
Change all occurrences of
hello.txt
inplan.py
tohi.txt
. Rerunning StepUp will not only createhi.txt
andfoo/hi.txt
. After completing all pending steps,hello.txt
andfoo/hello.txt
are removed. -
Undo all changes and rerun StepUp again. You should end up with the original outputs without any leftovers from the previous two steps.