Skip to content

Commit

Permalink
added a debug line for lint
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Oct 25, 2023
1 parent 0d10726 commit d7de1c5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cli/cli/commands/lint/lint.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ func run(_ context.Context, flags *flags.ParsedFlags, args *args.ParsedArgs) err
dockerRunSuffix = append(dockerRunSuffix, pathToLint)
commandArgs = append(commandArgs, dockerRunSuffix...)
cmd := exec.Command(dockerBinary, commandArgs...)
logrus.Debugf("Running command '%v'", cmd.String())
cmdOutput, err := cmd.CombinedOutput()
if err != nil {
if exitError, ok := err.(*exec.ExitError); ok {
Expand Down

0 comments on commit d7de1c5

Please sign in to comment.