diff --git a/src/Cmd/AbstractCmdBuilder.php b/src/Cmd/AbstractCmdBuilder.php index 1d130da..7b905eb 100644 --- a/src/Cmd/AbstractCmdBuilder.php +++ b/src/Cmd/AbstractCmdBuilder.php @@ -106,6 +106,14 @@ public function changeDir(string $workDir): static return $this; } + /** + * run and print all output + */ + public function flushRun(): static + { + return $this->run(true); + } + /** * run and print all output */