Fix bug in argument parsing for logger creation

Signed-off-by: Evan Lezar <elezar@nvidia.com>
This commit is contained in:
Evan Lezar
2024-06-24 11:33:13 +02:00
parent 4c944bb508
commit f64389414b
2 changed files with 2 additions and 1 deletions

View File

@@ -7,6 +7,7 @@
* Ensure consistent construction of libraries for CDI spec generation.
* Ensure that `nvidia-ctk cdi transform` creates specs with world-readable permissions.
* Remove provenance information from published images.
* Fix bug in processing of `--log=` argument of `nvidia-container-runtime`.
## v1.15.0

View File

@@ -238,7 +238,7 @@ func parseArgs(args []string) loggerConfig {
var value string
switch {
case len(parts) == 2:
value = parts[2]
value = parts[1]
case i+1 < len(args):
value = args[i+1]
i++