containers / krunvm

Create microVMs from OCI images
Apache License 2.0
1.41k stars 42 forks source link

Restrict the number of values of "-p" and "-v" #33

Closed slp closed 2 years ago

slp commented 2 years ago

With clap, "multiple(true)" implies that an argument may appear morethan once, but also that each time can declare multiple values. This behavior clobbers the positional argument IMAGE.

To prevent this, declare a limit of 1 value per occurrence.