Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deletes tar.zst of components after unarchive (#1385)
Upon a successful unarchive, delete the `tar.zst` that is no longer needed when using `zarf tools archiver decompress <package> <dest> --decompress-all`. ... Before behavior: ``` ocipkg/ ├── components │ ├── keyval │ │ └── manifests │ │ └── k3s │ │ ├── hornstash-deploy.yaml │ │ └── zarf-service.yaml │ └── keyval.tar.zst ├── images.tar ├── sboms │ ├── compare.html │ ├── registry.gitlab.com_buzzdeploy_apps_horn-stash_main-amd64.json │ └── sbom-viewer-registry.gitlab.com_buzzdeploy_apps_horn-stash_main-amd64.html ├── zarf-1135963779 └── zarf.yaml ``` After: ``` ocipkg/ ├── components │ └── keyval │ └── manifests │ └── k3s │ ├── hornstash-deploy.yaml │ └── zarf-service.yaml ├── images.tar ├── sboms │ ├── compare.html │ ├── registry.gitlab.com_buzzdeploy_apps_horn-stash_main-amd64.json │ └── sbom-viewer-registry.gitlab.com_buzzdeploy_apps_horn-stash_main-amd64.html ├── zarf-1135963779 └── zarf.yaml ``` Fixes # - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Other (security config, docs update, etc) - [ ] Test, docs, adr added or updated as needed - [ ] [Contributor Guide Steps](https://github.com/defenseunicorns/zarf/blob/main/CONTRIBUTING.md#developer-workflow) followed
- Loading branch information