Skip to content

Commit

Permalink
fix(docs): fix typo in command flag description
Browse files Browse the repository at this point in the history
  • Loading branch information
majori committed Jan 30, 2025
1 parent 496396f commit 235a42d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/check.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jalapeno check --recipe my-recipe --from oci://my-registry.com/my-recipe`,
&opts.UseDetailedExitCode,
"detailed-exitcode",
false,
fmt.Sprintf("Returns a detailed exit code when the command exits. When provided, this argument changes the exit codes and their meanings to provide more granular information about what the resulting plan contains: %d = Succeeded with no updates available, %d = Error, %d = Succeeded with updates available", ExitCodeOK, ExitCodeUpdatesAvailable, ExitCodeUpdatesAvailable))
fmt.Sprintf("Returns a detailed exit code when the command exits. When provided, this argument changes the exit codes and their meanings to provide more granular information about what the resulting plan contains: %d = Succeeded with no updates available, %d = Error, %d = Succeeded with updates available", ExitCodeOK, ExitCodeError, ExitCodeUpdatesAvailable))

if err := option.ApplyFlags(&opts, cmd.Flags()); err != nil {
return nil
Expand Down

0 comments on commit 235a42d

Please sign in to comment.