1

entr seems to only rerun the command for changes that happen after the command has finished running. But I use this for rerunning tests after modifying my code. If I make a change to the source while the tests are still running, I really do want entr to run the tests again as soon as the last iteration finishes. Is there a way to make it run for all changes?

Greg
  • 13

1 Answers1

1

In the upcoming version of entr there's a -a which reruns the utility even if the current utility run has not finished yet.

harm
  • 126