Skip to content

Commit

Permalink
2515 Fixed lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
jensalm committed Dec 4, 2024
1 parent 8f3c4e5 commit bcd157b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ziti/cmd/ascode/upload/upload_posture_check.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,12 @@ func (u *Upload) ProcessPostureChecks(input map[string][]interface{}) (map[strin
}).
Info("Found existing PostureCheck, skipping create")
}
_, _ = fmt.Fprintf(u.Err, "\u001B[2KSkipping PostureCheck %s\r", create.Name())
_, _ = fmt.Fprintf(u.Err, "\u001B[2KSkipping PostureCheck %s\r", *create.Name())
continue
}

// do the actual create since it doesn't exist
_, _ = fmt.Fprintf(u.Err, "\u001B[2KCreating PostureCheck %s\r", create.Name())
_, _ = fmt.Fprintf(u.Err, "\u001B[2KCreating PostureCheck %s\r", *create.Name())
if u.verbose {
log.WithFields(map[string]interface{}{
"name": *create.Name(),
Expand Down

0 comments on commit bcd157b

Please sign in to comment.