Skip to content
This repository was archived by the owner on Jan 9, 2020. It is now read-only.

Commit bedd974

Browse files
authored
Merge pull request #25 from vishvananda/fix-delete
allow delete -f to be passed by containerd
2 parents 9df5d18 + 5bfb344 commit bedd974

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/main.rs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,12 @@ fn run() -> Result<()> {
358358
SubCommand::with_name("delete")
359359
.setting(AppSettings::ColoredHelp)
360360
.arg(&id_arg)
361+
.arg(
362+
Arg::with_name("f")
363+
.help("Compatibility (ignored)")
364+
.long("force")
365+
.short("f"),
366+
)
361367
.about("Delete a (previously created) container"),
362368
)
363369
.subcommand(

0 commit comments

Comments
 (0)