Skip to content

Commit

Permalink
fix: Typo in --all arg for buildah and podman prune
Browse files Browse the repository at this point in the history
  • Loading branch information
gmpinder committed Dec 14, 2024
1 parent 974ba34 commit 469c604
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion process/drivers/buildah_driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ impl BuildDriver for BuildahDriver {
"buildah",
"prune",
"--force",
if opts.all => "-all",
if opts.all => "--all",
)
.message_status("buildah prune", "Pruning Buildah System")
.into_diagnostic()?;
Expand Down
2 changes: 1 addition & 1 deletion process/drivers/podman_driver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ impl BuildDriver for PodmanDriver {
"system",
"prune",
"--force",
if opts.all => "-all",
if opts.all => "--all",
if opts.volumes => "--volumes",
)
.message_status("podman system prune", "Pruning Podman System")
Expand Down

0 comments on commit 469c604

Please sign in to comment.