Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/container_image/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func IsEnabled(cmdCli cli.Cli) func(*cobra.Command, []string) error {
return func(cmd *cobra.Command, args []string) error {
enabled := cmdCli.GetBool("container_image.enabled")
if !enabled {
slog.Info("The container-image sm-plugin is not enabled. Enabled it using the 'container-image.enabled' setting")
slog.Info("The container-image sm-plugin is not enabled. Enabled it using the 'container_image.enabled' setting or 'CONTAINER_CONTAINER_IMAGE_ENABLED' env variable")
return cli.ExitCodeError{
Code: 1,
Err: fmt.Errorf("container-image is not enabled"),
Expand Down
Loading