Function create

Source
pub fn create(
    archive_path: impl AsRef<Utf8Path>,
    src: impl IntoIterator<Item = impl AsRef<Utf8Path>>,
) -> Result<()>
Available on crate feature archive only.
Expand description

Create a tar.gz archive from the given paths.

ยงExamples

cli_xtask::archive::create("foo.tar.gz", ["./foo/", "./bar.txt"])?;