Minor cleanup

This commit is contained in:
Erik C. Thauvin 2023-11-06 16:19:02 -08:00
parent c36d4a949d
commit 5167ce1c81
5 changed files with 17 additions and 2 deletions

View file

@ -75,6 +75,16 @@ public abstract class AbstractBootOperation<T extends AbstractBootOperation<T>>
return (T) this;
}
/**
* Provides the destination directory in which the archive will be created.
*
* @param directory the destination directory
* @return this operation instance
*/
public T destinationDirectory(String directory) throws IOException {
return destinationDirectory(new File(directory));
}
/**
* Provides the file name that will be used for the archive creation.
*