Cleaned up API to match bld operations and options APIs

This commit is contained in:
Erik C. Thauvin 2024-08-27 13:24:44 -07:00
parent f563cffd3f
commit 9548ddea23
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 26 additions and 6 deletions

View file

@ -21,6 +21,7 @@ import rife.bld.operations.AbstractOperation;
import rife.bld.operations.exceptions.ExitStatusException;
import java.io.File;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
@ -57,8 +58,7 @@ public class ExecOperation extends AbstractOperation<ExecOperation> {
* @see #command(Collection)
*/
public ExecOperation command(String... arg) {
args_.addAll(List.of(arg));
return this;
return command(List.of(arg));
}
/**
@ -199,6 +199,17 @@ public class ExecOperation extends AbstractOperation<ExecOperation> {
return this;
}
/**
* Configures the working directory.
*
* @param dir the directory
* @return this operation instance
*/
public ExecOperation workDir(Path dir) {
return workDir(dir.toFile());
}
/**
* Configures the working directory.
*